mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
6d307e6999
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/librelp/versions
22 lines
569 B
Nix
22 lines
569 B
Nix
{ stdenv, fetchurl, pkgconfig, gnutls, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "librelp-1.2.18";
|
|
|
|
src = fetchurl {
|
|
url = "http://download.rsyslog.com/librelp/${name}.tar.gz";
|
|
sha256 = "0grrnxhazd9iirj07al524xykk0k33vs0dgnpajz5vpqig4qyk53";
|
|
};
|
|
|
|
nativeBuildInputs = [ pkgconfig ];
|
|
buildInputs = [ 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 ];
|
|
};
|
|
}
|