nixpkgs/pkgs/development/libraries/haskell/hashtables/default.nix
Peter Simons b5c67150cf Updated Haskell packages.
- blaze-html: updated to version 0.4.3.4
 - gloss: updated to version 1.7.3.1
 - hashtables: updated to version 1.0.1.4
 - repa: updated to version 3.1.2.1
 - skein: updated to version 0.1.0.6

svn path=/nixpkgs/trunk/; revision=33859
2012-04-20 12:50:37 +00:00

16 lines
513 B
Nix

{ cabal, hashable, primitive, vector }:
cabal.mkDerivation (self: {
pname = "hashtables";
version = "1.0.1.4";
sha256 = "1s1xj5x90dz9n85bkmjpdp8zwnvvv13m19aaxzi63n3iyn4jki33";
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;
maintainers = [ self.stdenv.lib.maintainers.andres ];
};
})