2017-12-29 12:01:44 +00:00
|
|
|
{ stdenv, fetchurl, coreutils, bash, btrfs-progs, openssh, perl, perlPackages
|
2018-04-09 20:57:42 +00:00
|
|
|
, utillinux, asciidoc, makeWrapper }:
|
2016-03-18 13:50:49 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "btrbk-${version}";
|
2019-04-30 11:55:58 +00:00
|
|
|
version = "0.28.0";
|
2016-03-18 13:50:49 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://digint.ch/download/btrbk/releases/${name}.tar.xz";
|
2019-04-30 11:55:58 +00:00
|
|
|
sha256 = "1bqgcbkdd5s3l3ba1ifa9l523r8cr5y3arjdy9f6rmm840kn7xzf";
|
2016-03-18 13:50:49 +00:00
|
|
|
};
|
|
|
|
|
2018-04-09 20:57:42 +00:00
|
|
|
nativeBuildInputs = [ asciidoc makeWrapper ];
|
|
|
|
|
|
|
|
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 18:39:30 +00:00
|
|
|
|
|
|
|
# Fix SSH filter script
|
|
|
|
sed -i '/^export PATH/d' ssh_filter_btrbk.sh
|
|
|
|
substituteInPlace ssh_filter_btrbk.sh --replace logger ${utillinux}/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 \
|
2016-12-07 18:22:26 +00:00
|
|
|
--prefix PATH ':' "${stdenv.lib.makeBinPath [ btrfs-progs bash openssh ]}"
|
2016-03-18 13:50:49 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "A backup tool for btrfs subvolumes";
|
|
|
|
homepage = http://digint.ch/btrbk;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ the-kenny ];
|
|
|
|
inherit version;
|
|
|
|
};
|
|
|
|
}
|