mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
57bccb3cb8
* treewide: http -> https sources This updates the source urls of all top-level packages from http to https where possible. * buildtorrent: fix url and tab -> spaces
53 lines
1.5 KiB
Nix
53 lines
1.5 KiB
Nix
{ stdenv, fetchurl, coreutils, bash, btrfs-progs, openssh, perl, perlPackages
|
|
, utillinux, asciidoc, makeWrapper }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "btrbk-${version}";
|
|
version = "0.26.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://digint.ch/download/btrbk/releases/${name}.tar.xz";
|
|
sha256 = "04ahfm52vcf1w0c2km0wdgj2jpffp45bpawczmygcg8fdcm021lp";
|
|
};
|
|
|
|
nativeBuildInputs = [ asciidoc makeWrapper ];
|
|
|
|
buildInputs = with perlPackages; [ 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'
|
|
|
|
# Fix SSH filter script
|
|
sed -i '/^export PATH/d' ssh_filter_btrbk.sh
|
|
substituteInPlace ssh_filter_btrbk.sh --replace logger ${utillinux}/bin/logger
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|