nixpkgs/pkgs/development/libraries/libqb/default.nix
Thomas Gerbet 68889745cb libqb: 0.17.2 -> 2.0.2
Fixes CVE-2019-12779.
2021-01-30 11:07:25 +01:00

25 lines
634 B
Nix

{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, libxml2 }:
stdenv.mkDerivation rec {
pname = "libqb";
version = "2.0.2";
src = fetchFromGitHub {
owner = "ClusterLabs";
repo = pname;
rev = "v${version}";
sha256 = "1gpfcz84igqncky09hdibxmzapzl37y8914avgq89rsizynj1wsm";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
buildInputs = [ libxml2 ];
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;
};
}