From 762055c44c1ae572454042303f5ec5fb0601da9b Mon Sep 17 00:00:00 2001 From: "Niels G. W. Serup" Date: Mon, 24 Aug 2020 23:06:56 +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..44c5ab4 --- /dev/null +++ b/default.nix @@ -0,0 +1,7 @@ +with import {}; +stdenv.mkDerivation { + name = "metanohi"; + buildInputs = [ pandoc + (python3.withPackages (ps: with ps; [ pyyaml ])) + ]; +}