mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
btrbk: add missing mbuffer dependency
See changelog: https://github.com/digint/btrbk/blob/v0.29.0/ChangeLog#L14
This commit is contained in:
parent
7a1b4d1964
commit
053c153756
|
@ -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;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue