2012-02-14 17:00:37 +00:00
|
|
|
{ cabal, Cabal, 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";
|
2011-10-30 16:06:39 +00:00
|
|
|
version = "1.1.2.2";
|
|
|
|
sha256 = "0gfg1cyd468czfv5xfhn7rz0r5s0v378c4xjlm6kkw7n10n2zg8y";
|
2012-02-14 17:00:37 +00:00
|
|
|
buildDepends = [ Cabal text ];
|
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;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-07-07 22:40:43 +01:00
|
|
|
};
|
|
|
|
})
|