nixpkgs/pkgs/development/libraries/librelp/default.nix
William A. Kennington III 74c2500206 librelp: Make linux only
2015-04-04 20:03:33 -07:00

21 lines
541 B
Nix

{ stdenv, fetchurl, pkgconfig, gnutls, zlib }:
stdenv.mkDerivation rec {
name = "librelp-1.2.7";
src = fetchurl {
url = "http://download.rsyslog.com/librelp/${name}.tar.gz";
sha256 = "1lfpd06cchi1mhlxwq0xhmbx42b8isx9677v9h80c9vpf4f4lhrs";
};
buildInputs = [ pkgconfig gnutls zlib ];
meta = with stdenv.lib; {
homepage = http://www.librelp.com/;
description = "a reliable logging library";
license = licenses.gpl2;
platforms = platforms.linux;
maintainers = with maintainers; [ wkennington ];
};
}