mkdocs/shell.nix
Yann Esposito (Yogsototh) 16e32f1f7f
shell.nix
2018-02-01 06:43:46 +01:00

10 lines
233 B
Nix

let
pkgs = import (fetchTarball https://github.com/NixOS/nixpkgs/archive/17.09.tar.gz) {};
in with pkgs; {
simpleEnv = stdenv.mkDerivation {
name = "simple-env";
version = "1";
buildInputs = [ pandoc stack ];
};
}