metanohi/default.nix

8 lines
190 B
Nix
Raw Normal View History

2020-08-24 23:06:56 +02:00
with import <nixpkgs> {};
stdenv.mkDerivation {
name = "metanohi";
buildInputs = [ pandoc
(python3.withPackages (ps: with ps; [ pyyaml ]))
];
}