2012-02-14 18:00:37 +01:00
|
|
|
{ cabal, Cabal, 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";
|
2012-02-15 11:39:15 +01:00
|
|
|
version = "1.1.2.3";
|
|
|
|
sha256 = "19v94b34c2j6f9d9xii2hg0mjxdkq51aifkcqw6hbicn97kfcxls";
|
2012-02-14 18:00:37 +01:00
|
|
|
buildDepends = [ Cabal text ];
|
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;
|
|
|
|
maintainers = [
|
|
|
|
self.stdenv.lib.maintainers.andres
|
|
|
|
self.stdenv.lib.maintainers.simons
|
|
|
|
];
|
2011-07-07 23:40:43 +02:00
|
|
|
};
|
|
|
|
})
|