nixpkgs/pkgs/development/libraries/haskell/unordered-containers/default.nix
Andres Löh 29c7cd1298 Added aeson, unordered-containers.
svn path=/nixpkgs/trunk/; revision=27653
2011-07-07 21:40:43 +00:00

15 lines
387 B
Nix

{cabal, deepseq, hashable}:
cabal.mkDerivation (self : {
pname = "unordered-containers";
version = "0.1.4.0";
sha256 = "1v5m92rn2k7knhca91ldzi082hy4z0hp4nm66ihns4vxgslywgb9";
propagatedBuildInputs = [deepseq hashable];
meta = {
description = "Efficient hashing-based container types";
license = "BSD3";
maintainers = [self.stdenv.lib.maintainers.andres];
};
})