d788ba5a46
Semi-automatic update generated by https://github.com/ryantm/nix-update tools. These checks were done: - built on NixOS - ran `/nix/store/7sylf9ajn9ryic3752af47dsd93c82sc-btrbk-0.26.1/bin/.btrbk-wrapped -h` got 0 exit code - ran `/nix/store/7sylf9ajn9ryic3752af47dsd93c82sc-btrbk-0.26.1/bin/.btrbk-wrapped --help` got 0 exit code - ran `/nix/store/7sylf9ajn9ryic3752af47dsd93c82sc-btrbk-0.26.1/bin/.btrbk-wrapped --version` and found version 0.26.1 - ran `/nix/store/7sylf9ajn9ryic3752af47dsd93c82sc-btrbk-0.26.1/bin/.btrbk-wrapped -h` and found version 0.26.1 - ran `/nix/store/7sylf9ajn9ryic3752af47dsd93c82sc-btrbk-0.26.1/bin/.btrbk-wrapped --help` and found version 0.26.1 - ran `/nix/store/7sylf9ajn9ryic3752af47dsd93c82sc-btrbk-0.26.1/bin/btrbk -h` got 0 exit code - ran `/nix/store/7sylf9ajn9ryic3752af47dsd93c82sc-btrbk-0.26.1/bin/btrbk --help` got 0 exit code - ran `/nix/store/7sylf9ajn9ryic3752af47dsd93c82sc-btrbk-0.26.1/bin/btrbk --version` and found version 0.26.1 - ran `/nix/store/7sylf9ajn9ryic3752af47dsd93c82sc-btrbk-0.26.1/bin/btrbk -h` and found version 0.26.1 - ran `/nix/store/7sylf9ajn9ryic3752af47dsd93c82sc-btrbk-0.26.1/bin/btrbk --help` and found version 0.26.1 - found 0.26.1 with grep in /nix/store/7sylf9ajn9ryic3752af47dsd93c82sc-btrbk-0.26.1 - found 0.26.1 in filename of file in /nix/store/7sylf9ajn9ryic3752af47dsd93c82sc-btrbk-0.26.1
47 lines
1.3 KiB
Nix
47 lines
1.3 KiB
Nix
{ stdenv, fetchurl, coreutils, bash, btrfs-progs, openssh, perl, perlPackages
|
|
, asciidoc-full, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "btrbk-${version}";
|
|
version = "0.26.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://digint.ch/download/btrbk/releases/${name}.tar.xz";
|
|
sha256 = "04ahfm52vcf1w0c2km0wdgj2jpffp45bpawczmygcg8fdcm021lp";
|
|
};
|
|
|
|
buildInputs = with perlPackages; [ asciidoc-full makeWrapper perl DateCalc ];
|
|
|
|
preInstall = ''
|
|
for f in $(find . -name Makefile); do
|
|
substituteInPlace "$f" \
|
|
--replace "/usr" "$out" \
|
|
--replace "/etc" "$out/etc"
|
|
done
|
|
|
|
# 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'
|
|
'';
|
|
|
|
preFixup = ''
|
|
wrapProgram $out/sbin/btrbk \
|
|
--set PERL5LIB $PERL5LIB \
|
|
--prefix PATH ':' "${stdenv.lib.makeBinPath [ btrfs-progs bash openssh ]}"
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|