nixpkgs/pkgs/development/libraries/haskell/unordered-containers/default.nix
Peter Simons 74c70eeeca haskell-unordered-containers: updated to version 0.1.4.4
svn path=/nixpkgs/trunk/; revision=30912
2011-12-15 13:37:08 +00:00

18 lines
497 B
Nix

{ cabal, deepseq, hashable }:
cabal.mkDerivation (self: {
pname = "unordered-containers";
version = "0.1.4.4";
sha256 = "1fvicb2a8fnfg7579x6v4fpyz3dhjij8vmny4fa8x5g8ih608kb8";
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
];
};
})