]> git.immae.eu Git - github/fretlink/hmacaroons.git/blob - shell.nix
Import Control.Applicative
[github/fretlink/hmacaroons.git] / shell.nix
1 { pkgs ? import <nixpkgs> {}, compiler ? "ghc7101" }:
2 let hspkgs = pkgs.haskell.packages.${compiler}.override {
3 overrides = self: super: {
4 hmacaroons = self.callPackage ./. {};
5 };
6 };
7 in
8 hspkgs.hmacaroons.env