diff options
Diffstat (limited to 'custom/tinc/shell.nix')
-rw-r--r-- | custom/tinc/shell.nix | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/custom/tinc/shell.nix b/custom/tinc/shell.nix new file mode 100644 index 00000000..b514600f --- /dev/null +++ b/custom/tinc/shell.nix | |||
@@ -0,0 +1,13 @@ | |||
1 | { pkgs ? (import <nixpkgs> {}) | ||
2 | }: | ||
3 | |||
4 | pkgs.stdenv.mkDerivation rec { | ||
5 | name = "tinc-env"; | ||
6 | buildInputs = [ (pkgs.haskellPackages.ghcWithPackages (p: | ||
7 | with p; [ directory-tree | ||
8 | ])) | ||
9 | ]; | ||
10 | shellHook = '' | ||
11 | export PROMPT_INFO="${name}" | ||
12 | ''; | ||
13 | } | ||