mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
librelp: Add derivation
This commit is contained in:
parent
3b72e1f108
commit
8c37f09ea5
20
pkgs/development/libraries/librelp/default.nix
Normal file
20
pkgs/development/libraries/librelp/default.nix
Normal file
@ -0,0 +1,20 @@
|
||||
{ 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.all;
|
||||
maintainers = with maintainers; [ wkennington ];
|
||||
};
|
||||
}
|
@ -6355,6 +6355,8 @@ let
|
||||
libre = callPackage ../development/libraries/libre {};
|
||||
librem = callPackage ../development/libraries/librem {};
|
||||
|
||||
librelp = callPackage ../development/libraries/librelp { };
|
||||
|
||||
libresample = callPackage ../development/libraries/libresample {};
|
||||
|
||||
librevenge = callPackage ../development/libraries/librevenge {};
|
||||
|
Loading…
Reference in New Issue
Block a user