diff options
author | Joris | 2020-06-14 12:19:26 +0200 |
---|---|---|
committer | Joris | 2020-06-14 12:19:26 +0200 |
commit | aca8201b5b3af0c5d144292c61271402c49ff08a (patch) | |
tree | d11430b334ce8de6dfe13fd8ea31c8a92f116eb5 | |
parent | 4664a35134feea196c79c8f2f539215c82902f3f (diff) |
Pin nixpkgs
-rw-r--r-- | shell.nix | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -1,4 +1,9 @@ -with (import <nixpkgs> {}); +with (import (builtins.fetchGit { + name = "nixpkgs-20.03"; + url = "git@github.com:nixos/nixpkgs.git"; + rev = "5272327b81ed355bbed5659b8d303cf2979b6953"; + ref = "refs/tags/20.03"; +}) {}); haskell.lib.buildStackProject { name = "myenv"; |