1 { lib, stdenv, fetchFromGitHub }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 owner = "concurrencykit";
11 sha256 = "sha256-HUC+8Vd0koAmumRZ8gS5u6LVa7fUfkIYRaxVv6/7Hgg=";
14 dontDisableStatic = true;
17 description = "High-performance concurrency research library";
19 Concurrency primitives, safe memory reclamation mechanisms and non-blocking data structures for the research, design and implementation of high performance concurrent systems.
21 license = with licenses; [ asl20 bsd2 ];
22 homepage = "http://concurrencykit.org/";
23 platforms = platforms.unix;
24 maintainers = with maintainers; [ chessai thoughtpolice ];