summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--shell.nix14
1 files changed, 14 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..50e5bba
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,14 @@
1{ pkgs ? (import <nixpkgs> {})
2}:
3
4pkgs.stdenv.mkDerivation rec {
5 name = "feeds-env";
6 buildInputs = [ pkgs.mpv
7 (pkgs.haskellPackages.ghcWithPackages (p:
8 with p; [ conduit dependent-sum
9 ]))
10 ];
11 shellHook = ''
12 export PROMPT_INFO="${name}"
13 '';
14}