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

53 lines
1.5 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, coreutils, bash, btrfs-progs, openssh, perl, perlPackages
2019-08-14 10:47:22 -07:00
, utillinux, asciidoc, asciidoctor, makeWrapper }:
2016-03-18 06:50:49 -07:00
stdenv.mkDerivation rec {
pname = "btrbk";
2019-11-01 10:29:50 -07:00
version = "0.29.0";
2016-03-18 06:50:49 -07:00
src = fetchurl {
url = "https://digint.ch/download/btrbk/releases/${pname}-${version}.tar.xz";
2019-11-01 10:29:50 -07:00
sha256 = "1ki40jga09x361lj36hgzw3ahs0cg2w0s3rjwp209255fzyl89il";
2016-03-18 06:50:49 -07:00
};
2019-08-14 10:47:22 -07:00
nativeBuildInputs = [ asciidoc asciidoctor makeWrapper ];
2018-04-09 13:57:42 -07:00
buildInputs = with perlPackages; [ perl DateCalc ];
2016-03-18 06:50:49 -07:00
preInstall = ''
for f in $(find . -name Makefile); do
substituteInPlace "$f" \
--replace "/usr" "$out" \
--replace "/etc" "$out/etc"
done
2016-03-18 06:50:49 -07: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 11:39:30 -07: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 06:50:49 -07:00
'';
2018-01-29 11:15:43 -08:00
preFixup = ''
2016-03-18 06:50:49 -07:00
wrapProgram $out/sbin/btrbk \
--set PERL5LIB $PERL5LIB \
2016-12-07 10:22:26 -08:00
--prefix PATH ':' "${stdenv.lib.makeBinPath [ btrfs-progs bash openssh ]}"
2016-03-18 06:50:49 -07: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;
};
}