From 16e32f1f7fd6cd45333263729ff26793ab4f49d1 Mon Sep 17 00:00:00 2001 From: "Yann Esposito (Yogsototh)" Date: Thu, 1 Feb 2018 06:43:13 +0100 Subject: [PATCH] shell.nix --- shell.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 shell.nix diff --git a/shell.nix b/shell.nix new file mode 100644 index 0000000..3ba16d2 --- /dev/null +++ b/shell.nix @@ -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 ]; + }; +} +