nixpkgs/pkgs/development/libraries/haskell/hashable/1.2.0.6.nix

25 lines
734 B
Nix
Raw Normal View History

2013-04-22 13:28:17 +04:00
{ cabal, HUnit, QuickCheck, random, testFramework
, testFrameworkHunit, testFrameworkQuickcheck2, text
}:
cabal.mkDerivation (self: {
pname = "hashable";
2013-04-22 13:28:17 +04:00
version = "1.2.0.6";
sha256 = "0kd0vk87pgrir5zx7b30dvv2lsjjiykqi1gpalkgmgbvhals4p9z";
buildDepends = [ text ];
2013-04-22 13:28:17 +04:00
testDepends = [
HUnit QuickCheck random testFramework testFrameworkHunit
testFrameworkQuickcheck2 text
];
meta = {
homepage = "http://github.com/tibbe/hashable";
description = "A class for types that can be converted to a hash value";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})