Skip to content

Commit

Permalink
haskellPackages.lenz: Fix against latest hs-functors
Browse files Browse the repository at this point in the history
  • Loading branch information
shlevy committed Dec 22, 2017
1 parent 4c66ebb commit e32bc0b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions pkgs/development/haskell-modules/configuration-common.nix
Expand Up @@ -1008,4 +1008,15 @@ self: super: {

# https://github.com/alphaHeavy/protobuf/issues/34
protobuf = dontCheck super.protobuf;

# https://github.com/strake/lenz.hs/issues/2
lenz =
let patch = pkgs.fetchpatch
{ url = https://github.com/strake/lenz.hs/commit/4b9b79104759b9c6b24484455e1eb0d962eb3cff.patch;
sha256 = "02i0w9i55a4r251wgjzl5vbk6m2qhilwl7bfp5jwmf22z66sglyn";
};
in overrideCabal super.lenz (drv:
{ patches = (drv.patches or []) ++ [ patch ];
editedCabalFile = null;
});
}

0 comments on commit e32bc0b

Please sign in to comment.