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

cabal.mkDerivation (self: {
  pname = "digestive-functors";
  version = "0.5.0.3";
  sha256 = "176wpnwg4zpfwphl0ifb3zdm0dhw5xyd3vr81rc98s4db5y9csl0";
  buildDepends = [ mtl text ];
  meta = {
    homepage = "http://github.com/jaspervdj/digestive-functors";
    description = "A practical formlet library";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})