cb28766341
svn path=/nixpkgs/trunk/; revision=32327
19 lines
574 B
Nix
19 lines
574 B
Nix
{ cabal, HUnit, mtl, QuickCheck, random }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "testpack";
|
|
version = "2.1.1";
|
|
sha256 = "1z8g3xhvy901h7kr7q4wcms5b23xniskrgxfpq42w4b34acwvhmg";
|
|
buildDepends = [ HUnit mtl QuickCheck random ];
|
|
meta = {
|
|
homepage = "http://hackage.haskell.org/cgi-bin/hackage-scripts/package/testpack";
|
|
description = "Test Utililty Pack for HUnit and QuickCheck";
|
|
license = "LGPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [
|
|
self.stdenv.lib.maintainers.andres
|
|
self.stdenv.lib.maintainers.simons
|
|
];
|
|
};
|
|
})
|