summary refs log tree commit diff
path: root/pkgs/development/libraries/libarchive
diff options
context:
space:
mode:
authorFrederik Rietdijk <freddyrietdijk@fridh.nl>2020-05-29 20:51:16 +0200
committerGitHub <noreply@github.com>2020-05-29 20:51:16 +0200
commitf8d9f59abe02ce97f621da24723156934a54611e (patch)
treec286c441dbe1012c169bc82f0bb1e32d8b564fab /pkgs/development/libraries/libarchive
parentb27a19d5bf799f581a8afc2b554f178e58c1f524 (diff)
parent414da94fedd80cac992df835dfbd4a1efd388395 (diff)
downloadnixpkgs-f8d9f59abe02ce97f621da24723156934a54611e.tar
nixpkgs-f8d9f59abe02ce97f621da24723156934a54611e.tar.gz
nixpkgs-f8d9f59abe02ce97f621da24723156934a54611e.tar.bz2
nixpkgs-f8d9f59abe02ce97f621da24723156934a54611e.tar.lz
nixpkgs-f8d9f59abe02ce97f621da24723156934a54611e.tar.xz
nixpkgs-f8d9f59abe02ce97f621da24723156934a54611e.tar.zst
nixpkgs-f8d9f59abe02ce97f621da24723156934a54611e.zip
Merge pull request #78910 from serokell/libarchive-zstd
libarchive: link to zstd (split zstd output)
Diffstat (limited to 'pkgs/development/libraries/libarchive')
-rw-r--r--pkgs/development/libraries/libarchive/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/libraries/libarchive/default.nix b/pkgs/development/libraries/libarchive/default.nix
index 0f6b196d150..69feed39818 100644
--- a/pkgs/development/libraries/libarchive/default.nix
+++ b/pkgs/development/libraries/libarchive/default.nix
@@ -1,6 +1,6 @@
 {
   fetchFromGitHub, stdenv, pkgconfig, autoreconfHook,
-  acl, attr, bzip2, e2fsprogs, libxml2, lzo, openssl, sharutils, xz, zlib,
+  acl, attr, bzip2, e2fsprogs, libxml2, lzo, openssl, sharutils, xz, zlib, zstd,
 
   # Optional but increases closure only negligibly.
   xarSupport ? true,
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
   outputs = [ "out" "lib" "dev" ];
 
   nativeBuildInputs = [ pkgconfig autoreconfHook ];
-  buildInputs = [ sharutils zlib bzip2 openssl xz lzo ]
+  buildInputs = [ sharutils zlib bzip2 openssl xz lzo zstd ]
     ++ stdenv.lib.optionals stdenv.isLinux [ e2fsprogs attr acl ]
     ++ stdenv.lib.optional xarSupport libxml2;