lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

btrbk: 0.22.2 -> 0.24.0

authored by

Christian Kampka and committed by moritz.vongoewels.de a1d9d7ef edaac2c3

+4 -6
+4 -6
pkgs/tools/backup/btrbk/default.nix
··· 1 - { stdenv, fetchurl, coreutils, bash, btrfs-progs, perl, perlPackages, makeWrapper }: 1 + { stdenv, fetchurl, coreutils, bash, btrfs-progs, openssh, perl, perlPackages, makeWrapper }: 2 2 3 3 stdenv.mkDerivation rec { 4 4 name = "btrbk-${version}"; 5 - version = "0.22.2"; 5 + version = "0.24.0"; 6 6 7 7 src = fetchurl { 8 8 url = "http://digint.ch/download/btrbk/releases/${name}.tar.xz"; 9 - sha256 = "1gbgi0dp62wlw7y72pgxjs6byxkrk73g35kqxzw0gjf32r5i4sb8"; 9 + sha256 = "01jrlswly28h4q4r3qfrzadz0pf0ms6wynmqhwddj1ahj31729h3"; 10 10 }; 11 11 12 12 patches = [ 13 13 # https://github.com/digint/btrbk/pull/74 14 14 ./btrbk-Prefix-PATH-instead-of-resetting-it.patch 15 - # https://github.com/digint/btrbk/pull/73 16 - ./btrbk-mail-Use-btrbk-instead-of-unbound-variable-btr.patch 17 15 ]; 18 16 19 17 buildInputs = with perlPackages; [ makeWrapper perl DateCalc ]; ··· 38 36 39 37 wrapProgram $out/sbin/btrbk \ 40 38 --set PERL5LIB $PERL5LIB \ 41 - --prefix PATH ':' "${stdenv.lib.makeBinPath [ btrfs-progs bash ]}" 39 + --prefix PATH ':' "${stdenv.lib.makeBinPath [ btrfs-progs bash openssh ]}" 42 40 ''; 43 41 44 42 meta = with stdenv.lib; {