This repository has been archived on 2024-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
seminararbeit/default.nix

31 lines
500 B
Nix
Raw Normal View History

2020-10-03 14:56:13 +02:00
{ pkgs ? import <nixpkgs> {} }:
let
texlive = pkgs.texlive.combine {
2020-10-03 15:31:24 +02:00
inherit (pkgs.texlive) scheme-small
2020-10-03 14:56:13 +02:00
biber
biblatex
biblatex-iso690
csquotes
datetime2
datetime2-german
2020-10-03 15:31:24 +02:00
latexmk
lipsum
tracklang;
2020-10-03 14:56:13 +02:00
};
in
pkgs.stdenv.mkDerivation {
name = "seminararbeit.pdf";
nativeBuildInputs = [
texlive
];
src = pkgs.nix-gitignore.gitignoreSource [] ./.;
# We only build a PDF
dontFixup = true;
installPhase = "cp $name $out";
}