mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
haskell-hashtables: added version 1.0.0.0
svn path=/nixpkgs/trunk/; revision=30558
This commit is contained in:
parent
a85f739d1a
commit
6dfbee96eb
2 changed files with 20 additions and 0 deletions
18
pkgs/development/libraries/haskell/hashtables/default.nix
Normal file
18
pkgs/development/libraries/haskell/hashtables/default.nix
Normal file
|
@ -0,0 +1,18 @@
|
|||
{ cabal, hashable, primitive, vector }:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "hashtables";
|
||||
version = "1.0.0.0";
|
||||
sha256 = "1i7hf7cfj1gqkb4h00a4frflxw3af7rdd1h0pdlv18clinsk6668";
|
||||
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
|
||||
self.stdenv.lib.maintainers.simons
|
||||
];
|
||||
};
|
||||
})
|
|
@ -677,6 +677,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
|
|||
|
||||
hashedStorage = callPackage ../development/libraries/haskell/hashed-storage {};
|
||||
|
||||
hashtables = callPackage ../development/libraries/haskell/hashtables {};
|
||||
|
||||
haskeline = callPackage ../development/libraries/haskell/haskeline {};
|
||||
|
||||
haskelineClass = callPackage ../development/libraries/haskell/haskeline-class {};
|
||||
|
|
Loading…
Reference in a new issue