summary refs log tree commit diff
path: root/pkgs/development/libraries/libqb
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2014-10-08 01:25:25 -0700
committerWilliam A. Kennington III <william@wkennington.com>2014-10-08 01:27:26 -0700
commit33cd48a470096b8b8141d3b526092d1b9624a407 (patch)
tree81385d1f125a137d66bdac2dfe151edf297d8c2a /pkgs/development/libraries/libqb
parent2ff0c8d6efac3676237eab75a3773b32e4bb9222 (diff)
downloadnixpkgs-33cd48a470096b8b8141d3b526092d1b9624a407.tar
nixpkgs-33cd48a470096b8b8141d3b526092d1b9624a407.tar.gz
nixpkgs-33cd48a470096b8b8141d3b526092d1b9624a407.tar.bz2
nixpkgs-33cd48a470096b8b8141d3b526092d1b9624a407.tar.lz
nixpkgs-33cd48a470096b8b8141d3b526092d1b9624a407.tar.xz
nixpkgs-33cd48a470096b8b8141d3b526092d1b9624a407.tar.zst
nixpkgs-33cd48a470096b8b8141d3b526092d1b9624a407.zip
libqb: Add package
Diffstat (limited to 'pkgs/development/libraries/libqb')
-rw-r--r--pkgs/development/libraries/libqb/default.nix20
1 files changed, 20 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libqb/default.nix b/pkgs/development/libraries/libqb/default.nix
new file mode 100644
index 00000000000..a3b549e83b4
--- /dev/null
+++ b/pkgs/development/libraries/libqb/default.nix
@@ -0,0 +1,20 @@
+{ stdenv, fetchurl, pkgconfig }:
+
+stdenv.mkDerivation rec{
+  name = "libqb-0.16.0";
+
+  src = fetchurl {
+    url = "https://fedorahosted.org/releases/q/u/quarterback/${name}.tar.xz";
+    sha256 = "0j3zl5g5nnx98jb16p89q8w61har3gbvnlnmma8yj31xngps3kdq";
+  };
+
+  buildInputs = [ pkgconfig ];
+
+  meta = with stdenv.lib; {
+    homepage = https://github.com/clusterlabs/libqb;
+    description = "a library providing high performance logging, tracing, ipc, and poll";
+    license = licenses.lgpl21;
+    platforms = platforms.unix;
+    maintainers = with maintainers; [ wkennington ];
+  };
+}