lol
1{ stdenv, fetchurl, pkgconfig }:
2
3stdenv.mkDerivation rec{
4 name = "libqb-0.17.1";
5
6 src = fetchurl {
7 url = "https://fedorahosted.org/releases/q/u/quarterback/${name}.tar.xz";
8 sha256 = "0a9fy4hb6ixs875fbqw77dfj7519ixg27vg4yajyl87y7gw1a8bs";
9 };
10
11 buildInputs = [ pkgconfig ];
12
13 meta = with stdenv.lib; {
14 homepage = https://github.com/clusterlabs/libqb;
15 description = "a library providing high performance logging, tracing, ipc, and poll";
16 license = licenses.lgpl21;
17 platforms = platforms.unix;
18 maintainers = with maintainers; [ wkennington ];
19 };
20}