3
0
Fork 0
forked from mirrors/nixpkgs

haskell-atomic-primops: add version 0.1.0.2

This commit is contained in:
Peter Simons 2013-05-10 22:23:32 +02:00
parent 60195e10ba
commit c413721d7c
2 changed files with 16 additions and 0 deletions

View file

@ -0,0 +1,14 @@
{ cabal, Cabal, primitive }:
cabal.mkDerivation (self: {
pname = "atomic-primops";
version = "0.1.0.2";
sha256 = "1qjm97hi2wr658yk7f5cfppizaawmrkvs2q7qzq00h14fr71xxca";
buildDepends = [ Cabal primitive ];
meta = {
homepage = "https://github.com/rrnewton/haskell-lockfree-queue/wiki";
description = "A safe approach to CAS and other atomic ops in Haskell";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})

View file

@ -497,6 +497,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.final x y);
async_2_0_1_4 = callPackage ../development/libraries/haskell/async/2.0.1.4.nix {};
async = self.async_2_0_1_4;
atomicPrimops = callPackage ../development/libraries/haskell/atomic-primops {};
attempt = callPackage ../development/libraries/haskell/attempt {};
attoparsec = callPackage ../development/libraries/haskell/attoparsec {};