Merge pull request #110952 from LeSuisse/libqb-2.0.2
libqb: 0.17.2 -> 2.0.2
This commit is contained in:
commit
44c8df7e2a
@ -1,19 +1,24 @@
|
|||||||
{ lib, stdenv, fetchurl, pkg-config }:
|
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libxml2 }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libqb-0.17.2";
|
pname = "libqb";
|
||||||
|
version = "2.0.2";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://fedorahosted.org/releases/q/u/quarterback/${name}.tar.xz";
|
owner = "ClusterLabs";
|
||||||
sha256 = "1zpl45p3n6dn1jgbsrrmccrmv2mvp8aqmnl0qxfjf7ymkrj9qhcs";
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1gpfcz84igqncky09hdibxmzapzl37y8914avgq89rsizynj1wsm";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [ libxml2 ];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/clusterlabs/libqb";
|
homepage = "https://github.com/clusterlabs/libqb";
|
||||||
description = "A library providing high performance logging, tracing, ipc, and poll";
|
description = "A library providing high performance logging, tracing, ipc, and poll";
|
||||||
license = licenses.lgpl21;
|
license = licenses.lgpl21Plus;
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user