stockholm/tv/5pkgs/lentil/default.nix

16 lines
369 B
Nix
Raw Normal View History

2015-07-20 21:08:50 +00:00
{ pkgs, ... }:
(pkgs.haskellngPackages.override {
overrides = self: super: {
lentil = super.lentil.override {
mkDerivation = (attrs: self.mkDerivation (attrs // {
2015-07-27 15:49:02 +00:00
version = "0.1.3.0";
sha256 = "0xa59avh0bvfg69xh9p5b8dppfhx29mvfq8v41sk9j7qbcnzjivg";
2015-07-20 21:08:50 +00:00
patches = [
./syntaxes.patch
2015-07-20 21:08:50 +00:00
];
}));
};
};
}).lentil