2014-10-08 08:25:25 +00:00
|
|
|
{ stdenv, fetchurl, pkgconfig }:
|
|
|
|
|
2020-06-07 21:11:08 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2015-09-21 18:49:24 +00:00
|
|
|
name = "libqb-0.17.2";
|
2014-10-08 08:25:25 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://fedorahosted.org/releases/q/u/quarterback/${name}.tar.xz";
|
2015-09-21 18:49:24 +00:00
|
|
|
sha256 = "1zpl45p3n6dn1jgbsrrmccrmv2mvp8aqmnl0qxfjf7ymkrj9qhcs";
|
2014-10-08 08:25:25 +00:00
|
|
|
};
|
|
|
|
|
2015-09-21 18:49:24 +00:00
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
2014-10-08 08:25:25 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://github.com/clusterlabs/libqb";
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "A library providing high performance logging, tracing, ipc, and poll";
|
2014-10-08 08:25:25 +00:00
|
|
|
license = licenses.lgpl21;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|