Skip to content
Snippets Groups Projects
Commit 553c0d24 authored by Millian Poquet's avatar Millian Poquet
Browse files

nix: nix-buildable figures

parent 4386c6ab
Branches
No related tags found
No related merge requests found
Pipeline #4826 passed
...@@ -13,6 +13,19 @@ let ...@@ -13,6 +13,19 @@ let
pdftk pdftk
]; ];
}; };
figures = pkgs.stdenv.mkDerivation {
name = "figures";
buildInputs = shell.buildInputs;
src = pkgs.lib.sourceByRegex ./. [
"build\.ninja"
"fig"
"fig/.*\.svg"
];
installPhase = ''
mkdir -p $out
cp pipe-usage-example.pdf $out/
'';
};
}; };
in in
self self
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment