1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/libqb/default.nix

21 lines
589 B
Nix
Raw Normal View History

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