mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
haskell-unordered-containers: add version 0.2.5.0
This commit is contained in:
parent
b85bd47e9e
commit
72c4fe7de2
|
@ -0,0 +1,21 @@
|
|||
{ cabal, ChasingBottoms, deepseq, hashable, HUnit, QuickCheck
|
||||
, testFramework, testFrameworkHunit, testFrameworkQuickcheck2
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "unordered-containers";
|
||||
version = "0.2.5.0";
|
||||
sha256 = "0y85a9zg77h05c5ajchvfazg84ksvyi92r6bbmh09qzlf7mlb4bj";
|
||||
buildDepends = [ deepseq hashable ];
|
||||
testDepends = [
|
||||
ChasingBottoms hashable HUnit QuickCheck testFramework
|
||||
testFrameworkHunit testFrameworkQuickcheck2
|
||||
];
|
||||
doCheck = false;
|
||||
meta = {
|
||||
homepage = "https://github.com/tibbe/unordered-containers";
|
||||
description = "Efficient hashing-based container types";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -2433,7 +2433,8 @@ self : let callPackage = x : y : modifyPrio (newScope self x y); in
|
|||
|
||||
unorderedContainers_0_2_3_0 = callPackage ../development/libraries/haskell/unordered-containers/0.2.3.0.nix {};
|
||||
unorderedContainers_0_2_4_0 = callPackage ../development/libraries/haskell/unordered-containers/0.2.4.0.nix {};
|
||||
unorderedContainers = self.unorderedContainers_0_2_4_0;
|
||||
unorderedContainers_0_2_5_0 = callPackage ../development/libraries/haskell/unordered-containers/0.2.5.0.nix {};
|
||||
unorderedContainers = self.unorderedContainers_0_2_5_0;
|
||||
|
||||
uri = callPackage ../development/libraries/haskell/uri {};
|
||||
|
||||
|
|
Loading…
Reference in a new issue