9c6ee729d6
GitOrigin-RevId: 6cee3b5893090b0f5f0a06b4cf42ca4e60e5d222
28 lines
742 B
Nix
28 lines
742 B
Nix
{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libxml2 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libqb";
|
|
version = "2.0.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ClusterLabs";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-Tfw5nGy3A3zLtVuyHn+8jzXPySRNwBx0opwkE+0k+RA=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
|
|
|
buildInputs = [ libxml2 ];
|
|
|
|
postPatch = ''
|
|
sed -i '/# --enable-new-dtags:/,/--enable-new-dtags is required/ d' configure.ac
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/clusterlabs/libqb";
|
|
description = "A library providing high performance logging, tracing, ipc, and poll";
|
|
license = licenses.lgpl21Plus;
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|