Support Nix.

This commit is contained in:
Niels G. W. Serup 2020-08-24 23:06:56 +02:00
parent 7432f5ae79
commit 762055c44c
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 = "metanohi";
buildInputs = [ pandoc
(python3.withPackages (ps: with ps; [ pyyaml ]))
];
}