about summary refs log tree commit diff
path: root/pkgs/tools/archivers
diff options
context:
space:
mode:
authorLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-11-10 21:29:00 +0000
committerLluís Batlle i Rossell <viric@vicerveza.homeunix.net>2011-11-10 21:29:00 +0000
commit8ce410c6f3032c3e24e74d656c1948e4b890b164 (patch)
treef57998621b8f209703b2263ae4e1960be269a38c /pkgs/tools/archivers
parent1791ea091961fb7722159e84fb27d4a34b8d1c6f (diff)
downloadnixlib-8ce410c6f3032c3e24e74d656c1948e4b890b164.tar
nixlib-8ce410c6f3032c3e24e74d656c1948e4b890b164.tar.gz
nixlib-8ce410c6f3032c3e24e74d656c1948e4b890b164.tar.bz2
nixlib-8ce410c6f3032c3e24e74d656c1948e4b890b164.tar.lz
nixlib-8ce410c6f3032c3e24e74d656c1948e4b890b164.tar.xz
nixlib-8ce410c6f3032c3e24e74d656c1948e4b890b164.tar.zst
nixlib-8ce410c6f3032c3e24e74d656c1948e4b890b164.zip
Adding more libraries to have a more featured dar.
svn path=/nixpkgs/trunk/; revision=30377
Diffstat (limited to 'pkgs/tools/archivers')
-rw-r--r--pkgs/tools/archivers/dar/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/archivers/dar/default.nix b/pkgs/tools/archivers/dar/default.nix
index a76646f23b5a..f4e962f546c7 100644
--- a/pkgs/tools/archivers/dar/default.nix
+++ b/pkgs/tools/archivers/dar/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl, zlib, bzip2, openssl, attr }:
+{ stdenv, fetchurl, zlib, bzip2, openssl, attr, lzo, libgcrypt, e2fsprogs }:
 
 stdenv.mkDerivation rec {
   name = "dar-2.4.2";
@@ -8,7 +8,7 @@ stdenv.mkDerivation rec {
     sha256 = "0cvcy9xccg4wmvbpxyacwppapbq03m3pwjk8b3xmdn2h8lr1pziq";
   };
 
-  buildInputs = [ zlib bzip2 openssl attr ];
+  buildInputs = [ zlib bzip2 openssl attr lzo libgcrypt e2fsprogs ];
 
   configureFlags = "--disable-dar-static";