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/librelp/default.nix

21 lines
542 B
Nix
Raw Normal View History

2015-03-11 23:13:28 +00:00
{ stdenv, fetchurl, pkgconfig, gnutls, zlib }:
stdenv.mkDerivation rec {
2016-09-03 22:02:49 +01:00
name = "librelp-1.2.12";
2015-03-11 23:13:28 +00:00
src = fetchurl {
url = "http://download.rsyslog.com/librelp/${name}.tar.gz";
2016-09-03 22:02:49 +01:00
sha256 = "1mvvxqfsfg96rb6xv3fw7mcsqmyfnsb74sc53gnhpcpp4h2p6m83";
2015-03-11 23:13:28 +00:00
};
buildInputs = [ pkgconfig gnutls zlib ];
meta = with stdenv.lib; {
homepage = http://www.librelp.com/;
description = "A reliable logging library";
2015-03-11 23:13:28 +00:00
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 ];
};
}