3
0
Fork 0
forked from mirrors/nixpkgs

haskell-lockfree-queue: add version 0.2

This commit is contained in:
Peter Simons 2013-02-24 22:16:25 +01:00
parent 9bf8e18584
commit 0a18c04e95
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,19 @@
{ cabal, abstractDeque, HUnit, IORefCAS, testFramework
, testFrameworkHunit
}:
cabal.mkDerivation (self: {
pname = "lockfree-queue";
version = "0.2";
sha256 = "0m76wjw13nyj2mpz1dv2crg9sk66nlf62qgk2hbsa7ymydkq797c";
buildDepends = [ abstractDeque IORefCAS ];
testDepends = [
abstractDeque HUnit IORefCAS testFramework testFrameworkHunit
];
meta = {
homepage = "https://github.com/rrnewton/haskell-lockfree-queue/wiki";
description = "Michael and Scott lock-free queues";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -1195,6 +1195,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
ltk = callPackage ../development/libraries/haskell/ltk {};
lockfreeQueue = callPackage ../development/libraries/haskell/lockfree-queue {};
logfloat = callPackage ../development/libraries/haskell/logfloat {};
logict = callPackage ../development/libraries/haskell/logict {};