tix-papers/default.nix
2017-03-28 15:14:06 +02:00

18 lines
323 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;
})
biber fontconfig pdfpc rubber
];
src = ./.;
}