From 81e536a8568c09318c63e51231240fa446b21559 Mon Sep 17 00:00:00 2001 From: "Niels G. W. Serup" Date: Sun, 23 Aug 2020 21:54:53 +0200 Subject: [PATCH] Support Nix. --- default.nix | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 default.nix diff --git a/default.nix b/default.nix new file mode 100644 index 0000000..6cf6c97 --- /dev/null +++ b/default.nix @@ -0,0 +1,7 @@ +with import {}; +stdenv.mkDerivation { + name = "media"; + buildInputs = [ imagemagick + (python3.withPackages (ps: with ps; [ pyyaml ])) + ]; +}