1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-29 09:02:46 +00:00
nixpkgs/pkgs/development/libraries/librelp/default.nix

21 lines
541 B
Nix
Raw Normal View History

2015-03-11 23:13:28 +00:00
{ 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;
2015-04-05 04:03:33 +01:00
platforms = platforms.linux;
2015-03-11 23:13:28 +00:00
maintainers = with maintainers; [ wkennington ];
};
}