Support Nix.

This commit is contained in:
Niels G. W. Serup 2020-08-23 21:54:53 +02:00
parent 37d324d95a
commit 81e536a856
1 changed files with 7 additions and 0 deletions

7
default.nix Normal file
View File

@ -0,0 +1,7 @@
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "media";
buildInputs = [ imagemagick
(python3.withPackages (ps: with ps; [ pyyaml ]))
];
}