2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, coreutils, bash, btrfs-progs, openssh, perl, perlPackages
|
2020-11-24 15:29:28 +00:00
|
|
|
, util-linux, asciidoc, asciidoctor, mbuffer, makeWrapper }:
|
2016-03-18 13:50:49 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "btrbk";
|
2020-02-12 06:35:37 +00:00
|
|
|
version = "0.29.1";
|
2016-03-18 13:50:49 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "https://digint.ch/download/btrbk/releases/${pname}-${version}.tar.xz";
|
2020-02-12 06:35:37 +00:00
|
|
|
sha256 = "153inyvvnl17hq1w3nsa783havznaykdam2yrj775bmi2wg6fvwn";
|
2016-03-18 13:50:49 +00:00
|
|
|
};
|
|
|
|
|
2019-08-14 18:47:22 +01:00
|
|
|
nativeBuildInputs = [ asciidoc asciidoctor makeWrapper ];
|
2018-04-09 21:57:42 +01:00
|
|
|
|
|
|
|
buildInputs = with perlPackages; [ perl DateCalc ];
|
2016-03-18 13:50:49 +00:00
|
|
|
|
|
|
|
preInstall = ''
|
2017-12-29 12:01:44 +00:00
|
|
|
for f in $(find . -name Makefile); do
|
|
|
|
substituteInPlace "$f" \
|
|
|
|
--replace "/usr" "$out" \
|
|
|
|
--replace "/etc" "$out/etc"
|
|
|
|
done
|
2016-03-18 13:50:49 +00:00
|
|
|
|
|
|
|
# Tainted Mode disables PERL5LIB
|
|
|
|
substituteInPlace btrbk --replace "perl -T" "perl"
|
|
|
|
|
|
|
|
# Fix btrbk-mail
|
|
|
|
substituteInPlace contrib/cron/btrbk-mail \
|
|
|
|
--replace "/bin/date" "${coreutils}/bin/date" \
|
|
|
|
--replace "/bin/echo" "${coreutils}/bin/echo" \
|
|
|
|
--replace '$btrbk' 'btrbk'
|
2018-04-09 19:39:30 +01:00
|
|
|
|
|
|
|
# Fix SSH filter script
|
|
|
|
sed -i '/^export PATH/d' ssh_filter_btrbk.sh
|
2020-11-24 15:29:28 +00:00
|
|
|
substituteInPlace ssh_filter_btrbk.sh --replace logger ${util-linux}/bin/logger
|
2016-03-18 13:50:49 +00:00
|
|
|
'';
|
|
|
|
|
2018-01-29 19:15:43 +00:00
|
|
|
preFixup = ''
|
2016-03-18 13:50:49 +00:00
|
|
|
wrapProgram $out/sbin/btrbk \
|
|
|
|
--set PERL5LIB $PERL5LIB \
|
2019-11-16 15:40:36 +00:00
|
|
|
--prefix PATH ':' "${stdenv.lib.makeBinPath [ btrfs-progs bash mbuffer openssh ]}"
|
2016-03-18 13:50:49 +00:00
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-03-18 13:50:49 +00:00
|
|
|
description = "A backup tool for btrfs subvolumes";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://digint.ch/btrbk";
|
2016-03-18 13:50:49 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.unix;
|
2020-05-09 10:25:07 +01:00
|
|
|
maintainers = with maintainers; [ asymmetric ];
|
2016-03-18 13:50:49 +00:00
|
|
|
inherit version;
|
|
|
|
};
|
|
|
|
}
|