nixpkgs/pkgs/development/libraries/haskell/digestive-functors/default.nix
Peter Simons 7165babaf1 Re-generate all Haskell packages with the latest version of cabal2nix.
This change brings support for building and running the regressions test suites.
2013-02-24 22:09:07 +01:00

16 lines
534 B
Nix

{ 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;
};
})