Files
nixpkgs/pkgs/development/libraries/librelp/default.nix
T
Alexis Hildebrandt 755b915a15 treewide: Remove indefinite article from meta.description
nix run nixpkgs#silver-searcher -- -G '\.nix$' -0l 'description.*"[Aa]n?' pkgs \
  | xargs -0 nix run nixpkgs#gnused -- -i '' -Ee 's/(description.*")[Aa]n? (.)/\1\U\2/'
2024-06-09 23:07:45 +02:00

30 lines
605 B
Nix

{ lib, stdenv, fetchFromGitHub
, autoreconfHook
, gnutls
, openssl
, pkg-config
, zlib
}:
stdenv.mkDerivation rec {
pname = "librelp";
version = "1.11.0";
src = fetchFromGitHub {
owner = "rsyslog";
repo = "librelp";
rev = "v${version}";
sha256 = "sha256-VJlvFiOsIyiu0kBU8NkObtt9j2ElrSzJtvE8wtSlOus=";
};
nativeBuildInputs = [ pkg-config autoreconfHook ];
buildInputs = [ gnutls zlib openssl ];
meta = with lib; {
description = "Reliable logging library";
homepage = "https://www.librelp.com/";
license = licenses.gpl2;
platforms = platforms.linux;
};
}