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.0";
|
|
sha256 = "1im9247mvqngknvkjncjrjj3wydz2k9wlsin53vyddjcqbqxa54g";
|
|
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;
|
|
};
|
|
})
|