2013-04-22 11:28:17 +02:00
|
|
|
{ cabal, HUnit, QuickCheck, random, testFramework
|
|
|
|
, testFrameworkHunit, testFrameworkQuickcheck2, text
|
|
|
|
}:
|
2011-07-07 23:40:43 +02:00
|
|
|
|
2011-08-10 01:00:20 +02:00
|
|
|
cabal.mkDerivation (self: {
|
2011-07-07 23:40:43 +02:00
|
|
|
pname = "hashable";
|
2013-06-15 12:32:19 +02:00
|
|
|
version = "1.2.0.10";
|
|
|
|
sha256 = "155r7zqc0kisjdslr8d1c04yqwvzwqx4d99c0zla113dvsdjhp37";
|
2012-02-16 15:05:41 +01:00
|
|
|
buildDepends = [ text ];
|
2013-04-22 11:28:17 +02:00
|
|
|
testDepends = [
|
|
|
|
HUnit QuickCheck random testFramework testFrameworkHunit
|
|
|
|
testFrameworkQuickcheck2 text
|
|
|
|
];
|
2013-04-22 11:40:50 +02:00
|
|
|
doCheck = false;
|
2011-07-07 23:40:43 +02:00
|
|
|
meta = {
|
2011-08-10 01:00:20 +02:00
|
|
|
homepage = "http://github.com/tibbe/hashable";
|
2011-07-07 23:40:43 +02:00
|
|
|
description = "A class for types that can be converted to a hash value";
|
2011-08-10 01:00:20 +02:00
|
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
|
|
platforms = self.ghc.meta.platforms;
|
2013-05-11 00:36:36 +02:00
|
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
2011-07-07 23:40:43 +02:00
|
|
|
};
|
|
|
|
})
|