summary refs log tree commit diff
path: root/pkgs/development/libraries/libck
diff options
context:
space:
mode:
authorchessai <chessai1996@gmail.com>2019-10-28 03:01:05 -0400
committerchessai <chessai1996@gmail.com>2019-10-29 08:47:17 -0400
commit3519a16e508682c6d346b328bdcfa071bb141aec (patch)
tree3ebd9feb98860e93304017b49782f1cbb45a867e /pkgs/development/libraries/libck
parent172601d4bf196a143e4b83a01a451ffd37b6c321 (diff)
downloadnixpkgs-3519a16e508682c6d346b328bdcfa071bb141aec.tar
nixpkgs-3519a16e508682c6d346b328bdcfa071bb141aec.tar.gz
nixpkgs-3519a16e508682c6d346b328bdcfa071bb141aec.tar.bz2
nixpkgs-3519a16e508682c6d346b328bdcfa071bb141aec.tar.lz
nixpkgs-3519a16e508682c6d346b328bdcfa071bb141aec.tar.xz
nixpkgs-3519a16e508682c6d346b328bdcfa071bb141aec.tar.zst
nixpkgs-3519a16e508682c6d346b328bdcfa071bb141aec.zip
libck: init at 0.7.0
Diffstat (limited to 'pkgs/development/libraries/libck')
-rw-r--r--pkgs/development/libraries/libck/default.nix26
1 files changed, 26 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libck/default.nix b/pkgs/development/libraries/libck/default.nix
new file mode 100644
index 00000000000..934a250ac7c
--- /dev/null
+++ b/pkgs/development/libraries/libck/default.nix
@@ -0,0 +1,26 @@
+{ stdenv, fetchFromGitHub }:
+
+stdenv.mkDerivation rec {
+  pname = "ck";
+  version = "0.7.0";
+
+  src = fetchFromGitHub {
+    owner = "concurrencykit";
+    repo = pname;
+    rev = version;
+    sha256 = "1w7g0y1n7jslca693fb8sanlfi1biq956dw6avdx6pf3c2s7l9jd";
+  };
+
+  dontDisableStatic = true;
+
+  meta = with stdenv.lib; {
+    description = "High-performance concurrency research library";
+    longDescription = ''
+      Concurrency primitives, safe memory reclamation mechanisms and non-blocking data structures for the research, design and implementation of high performance concurrent systems.
+    '';
+    license = with licenses; [ asl20 bsd2 ];
+    homepage = "http://concurrencykit.org/";
+    platforms = platforms.linux;
+    maintainers = with maintainers; [ chessai ];
+  };
+}