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