nixpkgs/pkgs/development/libraries/librelp/default.nix
Matthew Bauer 290a5d916e treewide: update homepages to https where available
Based on "problems" from repology:

https://repology.org/repository/nix_unstable/problems

Mostly simple changes to reflect redirects.
2019-04-15 10:10:05 -04:00

21 lines
516 B
Nix

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