about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/hashtables/default.nix
blob: ddccebeb48d8292fa9f55f16164d51c7e421d77f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# This file was auto-generated by cabal2nix. Please do NOT edit manually!

{ cabal, fetchgit, hashable, primitive, vector }:

cabal.mkDerivation (self: {
  pname = "hashtables";
  version = "1.2.0.1";
  src = fetchgit {
    url = "git://github.com/gregorycollins/hashtables.git";
    sha256 = "1622ba3eb37e72cbedf01ae17162e045ca6506dea8a78750cc85805fe8e86129";
    rev = "a045fa90f4bc3923f38d1b468ce4d3982cef85e0";
  };
  buildDepends = [ hashable primitive vector ];
  meta = {
    homepage = "http://github.com/gregorycollins/hashtables";
    description = "Mutable hash tables in the ST monad";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})