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

cabal.mkDerivation (self: {
  pname = "digestive-functors";
  version = "0.6.0.1";
  sha256 = "1ni1hfmpz14yvgjphwz64hqhg7xbhvvqbdnapspipplvnl0rcmhi";
  buildDepends = [ mtl text ];
  testDepends = [ HUnit mtl testFramework testFrameworkHunit 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;
  };
})