haskell-lockfree-queue: update to version 0.2.0.2

This commit is contained in:
Peter Simons 2013-05-09 11:01:28 +02:00
parent 7eb6fa31a6
commit 23d93b521d

View file

@ -1,14 +1,15 @@
{ cabal, abstractDeque, HUnit, IORefCAS, testFramework
, testFrameworkHunit
{ cabal, abstractDeque, atomicPrimops, HUnit, IORefCAS
, testFramework, testFrameworkHunit
}:
cabal.mkDerivation (self: {
pname = "lockfree-queue";
version = "0.2";
sha256 = "0m76wjw13nyj2mpz1dv2crg9sk66nlf62qgk2hbsa7ymydkq797c";
buildDepends = [ abstractDeque IORefCAS ];
version = "0.2.0.2";
sha256 = "0mb07hx4cllnxv7mz19vvn9zcc5rx0ji5wv80fx0yirgk2qjpgml";
buildDepends = [ abstractDeque atomicPrimops IORefCAS ];
testDepends = [
abstractDeque HUnit IORefCAS testFramework testFrameworkHunit
abstractDeque atomicPrimops HUnit IORefCAS testFramework
testFrameworkHunit
];
meta = {
homepage = "https://github.com/rrnewton/haskell-lockfree-queue/wiki";