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