diff options
author | Joris | 2022-07-05 22:48:41 +0200 |
---|---|---|
committer | Joris | 2022-07-05 22:48:41 +0200 |
commit | e3b631eda51665d93bb7ae627d616f9a9f319262 (patch) | |
tree | 90a498d38f9d9a36590d4c40a9ece353821a89d6 /shell.nix | |
parent | 3a1cbfe23a3d06c3c30828c623a089868cff0670 (diff) |
Allow to compile
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -1,15 +1,15 @@ -with import <nixpkgs> {}; { +with (import (builtins.fetchGit { + url = "git@github.com:nixos/nixpkgs.git"; + rev = "4ea4cd99058d07538935bd55e08802395c295794"; +}){}); + +{ env = stdenv.mkDerivation { name = "env"; + buildInputs = [ elmPackages.elm nodejs - tmux - tmuxinator ]; - shellHook = '' - tmux kill-session -t catchvoid >/dev/null 2>&1 - tmuxinator local - ''; }; } |