media/default.nix

8 lines
192 B
Nix
Raw Normal View History

2020-08-23 21:54:53 +02:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "media";
buildInputs = [ imagemagick
(python3.withPackages (ps: with ps; [ pyyaml ]))
];
}