removed commented out pkgs

This commit is contained in:
Quinn Dougherty 2022-04-12 17:58:45 -04:00
parent bfae8b0e6d
commit 7e61d8890e

View File

@ -3,19 +3,11 @@
}: }:
# Style sheets https://github.com/citation-style-language/styles/ # Style sheets https://github.com/citation-style-language/styles/
with pkgs; with pkgs;
let deps = [
# (texlive.combine stdenv.mkDerivation {
# { inherit (texlive)
# scheme-small thmtools datetime xpatch fmtcount;
# }
# )
haskellPackages.pandoc
];
in
stdenv.mkDerivation {
name = "render_squiggle_properties"; name = "render_squiggle_properties";
src = ./.; src = ./.;
buildInputs = deps; buildInputs = [pandoc];
buildPhase = '' buildPhase = ''
echo rendering... echo rendering...
pandoc \ pandoc \
@ -30,4 +22,4 @@ in
mkdir -p $out mkdir -p $out
cp properties.pdf $out/properties.pdf cp properties.pdf $out/properties.pdf
''; '';
} }