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

75 lines
1.8 KiB
Nix
Raw Normal View History

{ lib
, stdenv
, fetchurl
, bash
, btrfs-progs
, openssh
, perl
, perlPackages
, util-linux
, asciidoc
, asciidoctor
, mbuffer
, makeWrapper
, genericUpdater
, curl
, writeShellScript
, nixosTests
}:
2016-03-18 13:50:49 +00:00
stdenv.mkDerivation rec {
pname = "btrbk";
version = "0.31.3";
2016-03-18 13:50:49 +00:00
src = fetchurl {
url = "https://digint.ch/download/btrbk/releases/${pname}-${version}.tar.xz";
sha256 = "1lx7vnf386nsik8mxrrfyx1h7mkqk5zs26sy0s0lynfxcm4lkxb2";
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 = ''
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" \
--replace "\$0" "\$ENV{'program_name'}"
2016-03-18 13:50:49 +00:00
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 = ''
wrapProgram $out/bin/btrbk \
2016-03-18 13:50:49 +00:00
--set PERL5LIB $PERL5LIB \
--run 'export program_name=$0' \
2021-01-15 09:19:50 +00:00
--prefix PATH ':' "${lib.makeBinPath [ btrfs-progs bash mbuffer openssh ]}"
2016-03-18 13:50:49 +00:00
'';
passthru.tests.btrbk = nixosTests.btrbk;
passthru.updateScript = genericUpdater {
inherit pname version;
versionLister = writeShellScript "btrbk-versionLister" ''
echo "# Versions for $1:" >> "$2"
${curl}/bin/curl -s https://digint.ch/download/btrbk/releases/ | ${perl}/bin/perl -lne 'print $1 if /btrbk-([0-9.]*)\.tar/'
'';
};
meta = with lib; {
2016-03-18 13:50:49 +00:00
description = "A backup tool for btrfs subvolumes";
homepage = "https://digint.ch/btrbk";
license = licenses.gpl3Only;
2016-03-18 13:50:49 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ asymmetric ];
2016-03-18 13:50:49 +00:00
};
}