mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-23 14:13:35 +00:00
19 lines
571 B
Nix
19 lines
571 B
Nix
{ cabal, blazeBuilder, digestiveFunctors, heist, mtl, text, xmlhtml
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "digestive-functors-heist";
|
|
version = "0.8.3.1";
|
|
sha256 = "11hrp3j3pz1ljp4mh5770fn70bga90kxgwqrm1fl6ki10q2q6z2h";
|
|
buildDepends = [
|
|
blazeBuilder digestiveFunctors heist mtl text xmlhtml
|
|
];
|
|
jailbreak = true;
|
|
meta = {
|
|
homepage = "http://github.com/jaspervdj/digestive-functors";
|
|
description = "Heist frontend for the digestive-functors library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|