summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/unordered-containers/default.nix
blob: 21ec0c92b06f36c0727454d3604d1aa6293f9348 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{ cabal, deepseq, hashable }:

cabal.mkDerivation (self: {
  pname = "unordered-containers";
  version = "0.2.1.0";
  sha256 = "0zk2ip32h6faqa1pfmiw242fdarr63lds4j828ix7qhrjifwiw4p";
  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 ];
  };
})