aboutsummaryrefslogtreecommitdiffhomepage
path: root/shell.nix
blob: 3846dd5bf7bc9d4862a420086bc9293865ba58d3 (plain) (blame)
1
2
3
4
5
6
7
8
{ pkgs ? import <nixpkgs> {}, compiler ? "ghc7101" }:
let hspkgs = pkgs.haskell.packages.${compiler}.override {
     overrides = self: super: {
       hmacaroons = self.callPackage ./. {};
      };
   };
in
  hspkgs.hmacaroons.env