nixpkgs/pkgs/tools/networking/nzbget/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.2 KiB
Nix
Raw Normal View History

2023-05-14 00:04:39 +00:00
{ lib
, stdenv
, fetchFromGitHub
, autoreconfHook
2023-05-14 00:04:39 +00:00
, pkg-config
, gnutls
, libgcrypt
, libpar2
, libcap
2023-05-14 00:04:39 +00:00
, libsigcxx
, libxml2
, ncurses
, openssl
, zlib
, nixosTests
}:
stdenv.mkDerivation (finalAttrs: {
pname = "nzbget-ng";
version = "21.4-rc2";
src = fetchFromGitHub {
owner = "nzbget-ng";
repo = "nzbget";
rev = "v${finalAttrs.version}";
hash = "sha256-JJML5mtAog5xC7DkthCtoyn5QeC2Z+fdzSuEa/Te0Ew=";
};
nativeBuildInputs = [ autoreconfHook pkg-config ];
2017-05-01 10:02:44 +00:00
2023-05-14 00:04:39 +00:00
buildInputs = [
gnutls
libgcrypt
libpar2
libcap
2023-05-14 00:04:39 +00:00
libsigcxx
libxml2
ncurses
openssl
zlib
];
prePatch = ''
sed -i 's/AC_INIT.*/AC_INIT( nzbget, m4_esyscmd_s( echo ${finalAttrs.version} ) )/' configure.ac
'';
2013-01-06 21:29:16 +00:00
enableParallelBuilding = true;
passthru.tests = { inherit (nixosTests) nzbget; };
meta = with lib; {
homepage = "https://nzbget-ng.github.io/";
changelog = "https://github.com/nzbget-ng/nzbget/releases/tag/v${finalAttrs.version}";
license = licenses.gpl2Plus;
description = "A command line tool for downloading files from news servers";
maintainers = with maintainers; [ pSub ];
platforms = with platforms; unix;
};
})