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

47 lines
1.3 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, coreutils, bash, btrfs-progs, openssh, perl, perlPackages
, asciidoc-full, makeWrapper }:
2016-03-18 13:50:49 +00:00
stdenv.mkDerivation rec {
name = "btrbk-${version}";
version = "0.26.1";
2016-03-18 13:50:49 +00:00
src = fetchurl {
url = "http://digint.ch/download/btrbk/releases/${name}.tar.xz";
sha256 = "04ahfm52vcf1w0c2km0wdgj2jpffp45bpawczmygcg8fdcm021lp";
2016-03-18 13:50:49 +00:00
};
buildInputs = with perlPackages; [ asciidoc-full makeWrapper perl DateCalc ];
2016-03-18 13:50:49 +00:00
preInstall = ''
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-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;
};
}