summary refs log tree commit diff
path: root/pkgs/tools/backup
diff options
context:
space:
mode:
authorMichael Adler <therisen06@gmail.com>2022-02-01 07:50:07 +0100
committerMichael Adler <therisen06@gmail.com>2022-02-01 07:59:02 +0100
commitaf268a8f2c9f5fb70e5910a3ee198beb69d9497a (patch)
tree988cf9a53e8306df2cfee194e5325b65289cb469 /pkgs/tools/backup
parentc83cf3473b815fd8869e9433e568bc5bea6e3a00 (diff)
downloadnixpkgs-af268a8f2c9f5fb70e5910a3ee198beb69d9497a.tar
nixpkgs-af268a8f2c9f5fb70e5910a3ee198beb69d9497a.tar.gz
nixpkgs-af268a8f2c9f5fb70e5910a3ee198beb69d9497a.tar.bz2
nixpkgs-af268a8f2c9f5fb70e5910a3ee198beb69d9497a.tar.lz
nixpkgs-af268a8f2c9f5fb70e5910a3ee198beb69d9497a.tar.xz
nixpkgs-af268a8f2c9f5fb70e5910a3ee198beb69d9497a.tar.zst
nixpkgs-af268a8f2c9f5fb70e5910a3ee198beb69d9497a.zip
btrbk: remove asciidoc dependency
asciidoc is not needed and pulls in inkscape which is currently not
available in the binary cache, so it triggers a noticeable build process.
Diffstat (limited to 'pkgs/tools/backup')
-rw-r--r--pkgs/tools/backup/btrbk/default.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/pkgs/tools/backup/btrbk/default.nix b/pkgs/tools/backup/btrbk/default.nix
index 69f745ecc1b..969ea26e362 100644
--- a/pkgs/tools/backup/btrbk/default.nix
+++ b/pkgs/tools/backup/btrbk/default.nix
@@ -7,7 +7,6 @@
 , perl
 , perlPackages
 , util-linux
-, asciidoc
 , asciidoctor
 , mbuffer
 , makeWrapper
@@ -26,7 +25,7 @@ stdenv.mkDerivation rec {
     sha256 = "1lx7vnf386nsik8mxrrfyx1h7mkqk5zs26sy0s0lynfxcm4lkxb2";
   };
 
-  nativeBuildInputs = [ asciidoc asciidoctor makeWrapper ];
+  nativeBuildInputs = [ asciidoctor makeWrapper ];
 
   buildInputs = with perlPackages; [ perl DateCalc ];