29c7cd1298
svn path=/nixpkgs/trunk/; revision=27653
15 lines
366 B
Nix
15 lines
366 B
Nix
{cabal, text}:
|
|
|
|
cabal.mkDerivation (self : {
|
|
pname = "hashable";
|
|
version = "1.1.2.1";
|
|
sha256 = "1kmx3jr9cmkbapd7gywx7zvyd22nyz2mgs8lnzspp5hi7crx3wcx";
|
|
propagatedBuildInputs = [text];
|
|
meta = {
|
|
description = "A class for types that can be converted to a hash value";
|
|
license = "BSD3";
|
|
maintainers = [self.stdenv.lib.maintainers.andres];
|
|
};
|
|
})
|
|
|