nixpkgs/pkgs/tools/backup/znapzend/default.nix

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

69 lines
2 KiB
Nix
Raw Permalink Normal View History

{ lib, stdenv, fetchFromGitHub, fetchurl, perl, perlPackages, wget, autoconf, automake, autoreconfHook }:
2016-03-24 10:51:59 +01:00
let
# 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 {
pname = "Mojolicious";
2021-11-22 16:20:30 +01:00
version = "8.73";
src = fetchurl {
url = "mirror://cpan/authors/id/S/SR/SRI/${pname}-${version}.tar.gz";
2021-11-22 16:20:30 +01:00
sha256 = "118y2264f89bbp5ly2dh36xjq25jk85s2ssxa3y4gsgsk6sjzzk1";
};
};
2021-11-22 16:20:30 +01:00
MojoIOLoopForkCall' = perlPackages.buildPerlModule rec {
pname = "Mojo-IOLoop-ForkCall";
version = "0.20";
src = fetchurl {
url = "mirror://cpan/authors/id/J/JB/JBERGER/${pname}-${version}.tar.gz";
sha256 = "19pih5x0ayxs2m8j29qwdpi6ky3w4ghv6vrmax3ix9r59hj6569b";
};
2021-11-22 16:20:30 +01:00
propagatedBuildInputs = [ perlPackages.IOPipely Mojolicious' ];
};
perl' = perl.withPackages (p:
2021-11-22 16:20:30 +01:00
[ MojoIOLoopForkCall'
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
};
buildInputs = [ wget perl' ];
2016-03-24 10:51:59 +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
'';
meta = with lib; {
2016-03-24 10:51:59 +01:00
description = "High performance open source ZFS backup with mbuffer and ssh support";
homepage = "https://www.znapzend.org";
2016-03-24 10:51:59 +01:00
license = licenses.gpl3;
maintainers = with maintainers; [ otwieracz ];
platforms = platforms.all;
};
}