haskell-lockfree-queue: update to version 0.2.3
This commit is contained in:
parent
4e9e56382e
commit
216be85d75
|
@ -1,18 +1,18 @@
|
||||||
{ cabal, abstractDeque, atomicPrimops, HUnit, IORefCAS
|
{ cabal, abstractDeque, abstractDequeTests, atomicPrimops, HUnit
|
||||||
, testFramework, testFrameworkHunit
|
, testFramework, testFrameworkHunit
|
||||||
}:
|
}:
|
||||||
|
|
||||||
cabal.mkDerivation (self: {
|
cabal.mkDerivation (self: {
|
||||||
pname = "lockfree-queue";
|
pname = "lockfree-queue";
|
||||||
version = "0.2.0.2";
|
version = "0.2.3";
|
||||||
sha256 = "0mb07hx4cllnxv7mz19vvn9zcc5rx0ji5wv80fx0yirgk2qjpgml";
|
sha256 = "0y8ax6vcjnjm8g7ybn95wca74hm0g22fvgra06vj6l90pl93awyg";
|
||||||
buildDepends = [ abstractDeque atomicPrimops IORefCAS ];
|
buildDepends = [ abstractDeque atomicPrimops ];
|
||||||
testDepends = [
|
testDepends = [
|
||||||
abstractDeque atomicPrimops HUnit IORefCAS testFramework
|
abstractDeque abstractDequeTests atomicPrimops HUnit testFramework
|
||||||
testFrameworkHunit
|
testFrameworkHunit
|
||||||
];
|
];
|
||||||
meta = {
|
meta = {
|
||||||
homepage = "https://github.com/rrnewton/haskell-lockfree-queue/wiki";
|
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
|
||||||
description = "Michael and Scott lock-free queues";
|
description = "Michael and Scott lock-free queues";
|
||||||
license = self.stdenv.lib.licenses.bsd3;
|
license = self.stdenv.lib.licenses.bsd3;
|
||||||
platforms = self.ghc.meta.platforms;
|
platforms = self.ghc.meta.platforms;
|
||||||
|
|
Loading…
Reference in New Issue