summary refs log tree commit diff
path: root/pkgs/tools/backup/btrbk
diff options
context:
space:
mode:
authorLorenzo Manacorda <lorenzo@mailbox.org>2019-11-16 16:40:36 +0100
committerLorenzo Manacorda <lorenzo@mailbox.org>2019-11-16 16:46:52 +0100
commit053c153756f24828193d1378b03a918952234c09 (patch)
treeda0405096e47cbb0de81940265b8c350da3a3125 /pkgs/tools/backup/btrbk
parent7a1b4d19648a2975244244a6983d7c60e245dc46 (diff)
downloadnixpkgs-053c153756f24828193d1378b03a918952234c09.tar
nixpkgs-053c153756f24828193d1378b03a918952234c09.tar.gz
nixpkgs-053c153756f24828193d1378b03a918952234c09.tar.bz2
nixpkgs-053c153756f24828193d1378b03a918952234c09.tar.lz
nixpkgs-053c153756f24828193d1378b03a918952234c09.tar.xz
nixpkgs-053c153756f24828193d1378b03a918952234c09.tar.zst
nixpkgs-053c153756f24828193d1378b03a918952234c09.zip
btrbk: add missing mbuffer dependency
See changelog: https://github.com/digint/btrbk/blob/v0.29.0/ChangeLog#L14
Diffstat (limited to 'pkgs/tools/backup/btrbk')
-rw-r--r--pkgs/tools/backup/btrbk/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/tools/backup/btrbk/default.nix b/pkgs/tools/backup/btrbk/default.nix
index 71e1807603c..cd45edfa2d5 100644
--- a/pkgs/tools/backup/btrbk/default.nix
+++ b/pkgs/tools/backup/btrbk/default.nix
@@ -1,5 +1,5 @@
 { stdenv, fetchurl, coreutils, bash, btrfs-progs, openssh, perl, perlPackages
-, utillinux, asciidoc, asciidoctor, makeWrapper }:
+, utillinux, asciidoc, asciidoctor, mbuffer, makeWrapper }:
 
 stdenv.mkDerivation rec {
   pname = "btrbk";
@@ -38,15 +38,15 @@ stdenv.mkDerivation rec {
   preFixup = ''
     wrapProgram $out/sbin/btrbk \
       --set PERL5LIB $PERL5LIB \
-      --prefix PATH ':' "${stdenv.lib.makeBinPath [ btrfs-progs bash openssh ]}"
+      --prefix PATH ':' "${stdenv.lib.makeBinPath [ btrfs-progs bash mbuffer openssh ]}"
   '';
 
   meta = with stdenv.lib; {
     description = "A backup tool for btrfs subvolumes";
-    homepage = http://digint.ch/btrbk;
+    homepage = https://digint.ch/btrbk;
     license = licenses.gpl3;
     platforms = platforms.unix;
-    maintainers = with maintainers; [ the-kenny ];
+    maintainers = with maintainers; [ asymmetric the-kenny ];
     inherit version;
   };
 }