summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/digestive-functors-heist/default.nix
blob: 92eadc44fcfe9969cfa33b97c60fcc81d56da6f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, digestiveFunctors, heist, text, xmlhtml }:

cabal.mkDerivation (self: {
  pname = "digestive-functors-heist";
  version = "0.5.1.0";
  sha256 = "1rycf6y1c0car2m71iia929si5iqpc2rdyyxzp326q0rgj94whpk";
  buildDepends = [ digestiveFunctors heist text xmlhtml ];
  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;
  };
})