stockholm/krebs/5pkgs/lentil/default.nix
tv 22a171f3e0 krebs pkgs += charybdis lentil much
While there, put everything into subdirectories.
2015-08-29 00:36:50 +02:00

16 lines
369 B
Nix

{ pkgs, ... }:
(pkgs.haskellngPackages.override {
overrides = self: super: {
lentil = super.lentil.override {
mkDerivation = (attrs: self.mkDerivation (attrs // {
version = "0.1.3.0";
sha256 = "0xa59avh0bvfg69xh9p5b8dppfhx29mvfq8v41sk9j7qbcnzjivg";
patches = [
./syntaxes.patch
];
}));
};
};
}).lentil