8 lines
192 B
Nix
8 lines
192 B
Nix
|
with import <nixpkgs> {};
|
||
|
stdenv.mkDerivation {
|
||
|
name = "media";
|
||
|
buildInputs = [ imagemagick
|
||
|
(python3.withPackages (ps: with ps; [ pyyaml ]))
|
||
|
];
|
||
|
}
|