summary refs log tree commit diff
path: root/pkgs/development/libraries/libcdada
diff options
context:
space:
mode:
author0x4A6F <0x4A6F@users.noreply.github.com>2021-10-01 23:49:43 +0200
committer0x4A6F <0x4A6F@users.noreply.github.com>2021-10-05 23:47:52 +0200
commit986159b82391e8744ee8925c4287d17341febb5d (patch)
tree10acff193e178fc323aa69da63c269d9ca43d97b /pkgs/development/libraries/libcdada
parent107a5943bdd61e89a45b40ee81aa51675d1d9bcc (diff)
downloadnixpkgs-986159b82391e8744ee8925c4287d17341febb5d.tar
nixpkgs-986159b82391e8744ee8925c4287d17341febb5d.tar.gz
nixpkgs-986159b82391e8744ee8925c4287d17341febb5d.tar.bz2
nixpkgs-986159b82391e8744ee8925c4287d17341febb5d.tar.lz
nixpkgs-986159b82391e8744ee8925c4287d17341febb5d.tar.xz
nixpkgs-986159b82391e8744ee8925c4287d17341febb5d.tar.zst
nixpkgs-986159b82391e8744ee8925c4287d17341febb5d.zip
libcdada: init at 0.3.5
Diffstat (limited to 'pkgs/development/libraries/libcdada')
-rw-r--r--pkgs/development/libraries/libcdada/default.nix37
1 files changed, 37 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libcdada/default.nix b/pkgs/development/libraries/libcdada/default.nix
new file mode 100644
index 00000000000..94976c1be46
--- /dev/null
+++ b/pkgs/development/libraries/libcdada/default.nix
@@ -0,0 +1,37 @@
+{ lib
+, stdenv
+, fetchFromGitHub
+, autoreconfHook
+}:
+
+stdenv.mkDerivation rec {
+  pname = "libcdada";
+  version = "0.3.5";
+
+  src = fetchFromGitHub {
+    owner = "msune";
+    repo = "libcdada";
+    rev = "v${version}";
+    sha256 = "0vcsf3s4fbw2w33jjc8b509kc0xb6ld58l8wfxgqwjqx5icfg1ps";
+  };
+
+  nativeBuildInputs = [
+    autoreconfHook
+  ];
+
+  configureFlags = [
+    "--without-tests"
+    "--without-examples"
+  ];
+
+  meta = with lib; {
+    description = "Library for basic data structures in C";
+    longDescription = ''
+      Basic data structures in C: list, set, map/hashtable, queue... (libstdc++ wrapper)
+    '';
+    homepage = "https://github.com/msune/libcdada";
+    license = licenses.bsd2;
+    maintainers = with maintainers; [ _0x4A6F ];
+    platforms = platforms.unix;
+  };
+}