Added aeson, unordered-containers.

svn path=/nixpkgs/trunk/; revision=27653
This commit is contained in:
Andres Löh
2011-07-07 21:40:43 +00:00
parent 65d9fa940b
commit 29c7cd1298
5 changed files with 68 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
{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];
};
})