diff options
Diffstat (limited to 'shell.nix')
-rw-r--r-- | shell.nix | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,5 +1,5 @@ | |||
1 | with (import <nixpkgs> {}).pkgs; | 1 | { pkgs ? import <nixpkgs> {}, compiler ? "ghc7101" }: |
2 | let hspkgs = haskell-ng.packages.ghc7101.override { | 2 | let hspkgs = pkgs.haskell.packages.${compiler}.override { |
3 | overrides = self: super: { | 3 | overrides = self: super: { |
4 | hmacaroons = self.callPackage ./. {}; | 4 | hmacaroons = self.callPackage ./. {}; |
5 | }; | 5 | }; |