about summary refs log tree commit diff
path: root/pkgs/development/libraries/croaring
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2019-06-04 13:09:09 +0000
committerOrivej Desh <orivej@gmx.fr>2019-06-04 13:09:09 +0000
commitd1cd9ff16c30567565c17992285e49b75b754bf1 (patch)
treee6f583ff90c662991e21a3101f8c29c2997f5453 /pkgs/development/libraries/croaring
parent0c2eff0539993f330f0cd014549bf9aae18cec69 (diff)
croaring: init at 0.2.61
Diffstat (limited to 'pkgs/development/libraries/croaring')
-rw-r--r--pkgs/development/libraries/croaring/default.nix28
1 files changed, 28 insertions, 0 deletions
diff --git a/pkgs/development/libraries/croaring/default.nix b/pkgs/development/libraries/croaring/default.nix
new file mode 100644
index 0000000000000..6e6ee2479d44a
--- /dev/null
+++ b/pkgs/development/libraries/croaring/default.nix
@@ -0,0 +1,28 @@
+{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake }:
+
+stdenv.mkDerivation rec {
+  pname = "croaring";
+  version = "0.2.61";
+
+  src = fetchFromGitHub {
+    owner = "RoaringBitmap";
+    repo = "CRoaring";
+    rev = "v${version}";
+    sha256 = "14y8iwv6b6gg7hgs00yqg8rwx4vwbb1zs2s99lxa51zx9vp1alcn";
+  };
+
+  patches = fetchpatch {
+    url = "https://github.com/RoaringBitmap/CRoaring/commit/8d8c60736f506b2b8f1c365148a8a541b26a55f2.patch";
+    sha256 = "1y2mbn4i8lj3lkn5s8zziyr9pl1fq9hndzz9c01dkv3s8sn7f55s";
+  };
+
+  nativeBuildInputs = [ cmake ];
+
+  meta = with lib; {
+    description = "Compressed bitset library for C and C++";
+    homepage = http://roaringbitmap.org/;
+    license = licenses.asl20;
+    maintainers = with maintainers; [ orivej ];
+    platforms = platforms.linux;
+  };
+}