tix-papers/default.nix
2017-04-07 11:14:14 +02:00

18 lines
328 B
Nix

{
nixpkgs ? <nixpkgs>, system ? builtins.currentSystem
}:
with import nixpkgs { inherit system; };
stdenv.mkDerivation rec {
name = "papers";
version = "0.0";
buildInputs = [
(texlive.combine {
inherit (texlive) scheme-medium syntax todo;
})
biber fontconfig pdfpc rubber
];
src = ./.;
}