nixpkgs/pkgs/development/libraries/haskell/unordered-containers/default.nix
Peter Simons 2f02b3d8e0 haskell-unordered-containers: updated to version 0.1.4.6
svn path=/nixpkgs/trunk/; revision=31037
2011-12-22 12:19:14 +00:00

18 lines
497 B
Nix

{ cabal, deepseq, hashable }:
cabal.mkDerivation (self: {
pname = "unordered-containers";
version = "0.1.4.6";
sha256 = "1azwxbrzlzaw54idp3z2xx1xlywzsf1r893blbz51nnwcj9v550d";
buildDepends = [ deepseq hashable ];
meta = {
description = "Efficient hashing-based container types";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
maintainers = [
self.stdenv.lib.maintainers.andres
self.stdenv.lib.maintainers.simons
];
};
})