blob: 07952fc2e2c493b868322442986d545cfd5c6987 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
with (import <nixpkgs> {}).pkgs;
let hspkgs = haskell-ng.packages.ghc7101.override {
overrides = self: super: {
hmacaroons = self.callPackage ./. {};
};
};
in
hspkgs.hmacaroons.env
|