1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 owner = "concurrencykit";
11 sha256 = "sha256-lxJ8WsZ3pBGf4sFYj5+tR37EYDZqpksaoohiIKA4pRI=";
18 'COMPILER=`./.1 2> /dev/null`' \
22 configureFlags = ["--platform=${stdenv.hostPlatform.parsed.cpu.name}}"];
24 dontDisableStatic = true;
27 description = "High-performance concurrency research library";
29 Concurrency primitives, safe memory reclamation mechanisms and non-blocking data structures for the research, design and implementation of high performance concurrent systems.
31 license = with licenses; [ asl20 bsd2 ];
32 homepage = "http://concurrencykit.org/";
33 platforms = platforms.unix;
34 maintainers = with maintainers; [ chessai thoughtpolice ];