Skip to content
Snippets Groups Projects
Commit 51fc1079 authored by Daniel Firth's avatar Daniel Firth
Browse files

atomic-primops: init at 0.8.4

parent 59e951e5
No related merge requests found
......@@ -82,6 +82,7 @@ in [ callHackage "Cabal" "3.8.1.0"
, callHackage "asn1-types" "0.3.4"
, callHackage "assoc" "1.0.2"
, callHackage "async" "2.2.4"
, callHackage "atomic-primops" "0.8.4"
, callHackage "attoparsec-iso8601" "1.1.0.0"
, callHackage "attoparsec" "0.14.4"
, callHackage "autodocodec" "0.2.0.1"
......
......@@ -47,6 +47,8 @@ final: prev: with pkgs.haskell.lib; {
async = prev.callPackage (./pkgs/async.nix) { };
atomic-primops = prev.callPackage (./pkgs/atomic-primops.nix) { };
attoparsec = prev.callPackage (./pkgs/attoparsec.nix) { };
attoparsec-iso8601 = prev.callPackage (./pkgs/attoparsec-iso8601.nix) { };
......
{ mkDerivation, base, ghc-prim, lib, primitive }:
mkDerivation {
pname = "atomic-primops";
version = "0.8.4";
sha256 = "22a8617eb9e221b5daee1ae26ccce279ce3d7a53d76e82c767708f90a6c72d3e";
isLibrary = true;
isExecutable = false;
enableSeparateDataOutput = false;
libraryHaskellDepends = [ base ghc-prim primitive ];
enableLibraryProfiling = false;
enableExecutableProfiling = false;
doHaddock = false;
jailbreak = true;
doCheck = false;
doBenchmark = false;
hyperlinkSource = false;
homepage = "https://github.com/rrnewton/haskell-lockfree/wiki";
description = "A safe approach to CAS and other atomic ops in Haskell";
license = lib.licenses.bsd3;
broken = false;
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment