shell.nix

This commit is contained in:
Yann Esposito (Yogsototh) 2018-02-01 06:43:13 +01:00
parent 7266f88b83
commit 16e32f1f7f
Signed by untrusted user who does not match committer: yogsototh
GPG key ID: 7B19A4C650D59646

10
shell.nix Normal file
View file

@ -0,0 +1,10 @@
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 ];
};
}