2021-01-11 08:54:33 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchurl, perl, perlPackages, wget, autoconf, automake, autoreconfHook }:
|
2016-03-24 10:51:59 +01:00
|
|
|
|
|
|
|
let
|
2020-03-23 20:52:40 +01:00
|
|
|
# when upgrade znapzend, check versions of Perl libs here: https://github.com/oetiker/znapzend/blob/master/cpanfile
|
2021-11-22 16:20:30 +01:00
|
|
|
# pinned versions are listed at https://github.com/oetiker/znapzend/blob/master/thirdparty/cpanfile-5.30.snapshot
|
|
|
|
Mojolicious' = perlPackages.buildPerlPackage rec {
|
2019-06-20 15:07:56 +02:00
|
|
|
pname = "Mojolicious";
|
2021-11-22 16:20:30 +01:00
|
|
|
version = "8.73";
|
2018-06-04 13:25:38 +02:00
|
|
|
src = fetchurl {
|
2019-06-20 15:07:56 +02:00
|
|
|
url = "mirror://cpan/authors/id/S/SR/SRI/${pname}-${version}.tar.gz";
|
2021-11-22 16:20:30 +01:00
|
|
|
sha256 = "118y2264f89bbp5ly2dh36xjq25jk85s2ssxa3y4gsgsk6sjzzk1";
|
2018-06-04 13:25:38 +02:00
|
|
|
};
|
|
|
|
};
|
2021-11-22 16:20:30 +01:00
|
|
|
MojoIOLoopForkCall' = perlPackages.buildPerlModule rec {
|
2019-06-20 15:07:56 +02:00
|
|
|
pname = "Mojo-IOLoop-ForkCall";
|
2020-03-23 20:52:40 +01:00
|
|
|
version = "0.20";
|
2018-06-04 13:25:38 +02:00
|
|
|
src = fetchurl {
|
2019-06-20 15:07:56 +02:00
|
|
|
url = "mirror://cpan/authors/id/J/JB/JBERGER/${pname}-${version}.tar.gz";
|
2020-03-23 20:52:40 +01:00
|
|
|
sha256 = "19pih5x0ayxs2m8j29qwdpi6ky3w4ghv6vrmax3ix9r59hj6569b";
|
2018-06-04 13:25:38 +02:00
|
|
|
};
|
2021-11-22 16:20:30 +01:00
|
|
|
propagatedBuildInputs = [ perlPackages.IOPipely Mojolicious' ];
|
2018-06-04 13:25:38 +02:00
|
|
|
};
|
|
|
|
|
2021-02-24 20:53:45 +01:00
|
|
|
perl' = perl.withPackages (p:
|
2021-11-22 16:20:30 +01:00
|
|
|
[ MojoIOLoopForkCall'
|
2021-02-24 20:53:45 +01:00
|
|
|
p.TAPParserSourceHandlerpgTAP
|
|
|
|
]);
|
|
|
|
|
2021-11-22 16:20:30 +01:00
|
|
|
version = "0.21.0";
|
|
|
|
sha256 = "1lg46rf2ahlclan29zx8ag5k4fjp28sc9l02z76f0pvdlj4qnihl";
|
2016-03-24 10:51:59 +01:00
|
|
|
in
|
2019-08-13 23:52:01 +02:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 23:52:01 +02:00
|
|
|
pname = "znapzend";
|
|
|
|
inherit version;
|
2016-03-24 10:51:59 +01:00
|
|
|
|
2016-04-26 01:02:04 +02:00
|
|
|
src = fetchFromGitHub {
|
2016-03-24 10:51:59 +01:00
|
|
|
owner = "oetiker";
|
|
|
|
repo = "znapzend";
|
|
|
|
rev = "v${version}";
|
2021-11-22 16:20:30 +01:00
|
|
|
inherit sha256;
|
2016-03-24 10:51:59 +01:00
|
|
|
};
|
|
|
|
|
2021-02-24 20:53:45 +01:00
|
|
|
buildInputs = [ wget perl' ];
|
2016-03-24 10:51:59 +01:00
|
|
|
|
2020-03-23 20:52:40 +01:00
|
|
|
nativeBuildInputs = [ autoconf automake autoreconfHook ];
|
2016-03-24 10:51:59 +01:00
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
sed -i 's/^SUBDIRS =.*$/SUBDIRS = lib/' Makefile.am
|
|
|
|
|
|
|
|
grep -v thirdparty/Makefile configure.ac > configure.ac.tmp
|
|
|
|
mv configure.ac.tmp configure.ac
|
|
|
|
|
|
|
|
autoconf
|
|
|
|
'';
|
|
|
|
|
|
|
|
preBuild = ''
|
|
|
|
aclocal
|
|
|
|
automake
|
|
|
|
'';
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-03-24 10:51:59 +01:00
|
|
|
description = "High performance open source ZFS backup with mbuffer and ssh support";
|
2022-01-03 16:53:12 +01:00
|
|
|
homepage = "https://www.znapzend.org";
|
2016-03-24 10:51:59 +01:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ otwieracz ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|