1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 21:21:06 +00:00
nixpkgs/pkgs/development/libraries/libqb/default.nix

21 lines
583 B
Nix
Raw Normal View History

2014-10-08 09:25:25 +01:00
{ stdenv, fetchurl, pkgconfig }:
stdenv.mkDerivation rec{
2014-10-18 00:53:28 +01:00
name = "libqb-0.17.1";
2014-10-08 09:25:25 +01:00
src = fetchurl {
url = "https://fedorahosted.org/releases/q/u/quarterback/${name}.tar.xz";
2014-10-18 00:53:28 +01:00
sha256 = "0a9fy4hb6ixs875fbqw77dfj7519ixg27vg4yajyl87y7gw1a8bs";
2014-10-08 09:25:25 +01:00
};
buildInputs = [ pkgconfig ];
meta = with stdenv.lib; {
homepage = https://github.com/clusterlabs/libqb;
description = "a library providing high performance logging, tracing, ipc, and poll";
license = licenses.lgpl21;
platforms = platforms.unix;
maintainers = with maintainers; [ wkennington ];
};
}