summary refs log tree commit diff
path: root/pkgs/tools/archivers/gnutar
diff options
context:
space:
mode:
authorVladimír Čunát <vcunat@gmail.com>2014-08-27 01:14:09 +0200
committerVladimír Čunát <vcunat@gmail.com>2014-08-27 01:14:09 +0200
commitfb59f27a4368b1436518f9f76c6e2e68f60b92a6 (patch)
treea68c3ac03a7ea04fd4b756a9d3cabf2667896e62 /pkgs/tools/archivers/gnutar
parent4dccb224c584194e964b5fbef5fe2cee28c57803 (diff)
downloadnixpkgs-fb59f27a4368b1436518f9f76c6e2e68f60b92a6.tar
nixpkgs-fb59f27a4368b1436518f9f76c6e2e68f60b92a6.tar.gz
nixpkgs-fb59f27a4368b1436518f9f76c6e2e68f60b92a6.tar.bz2
nixpkgs-fb59f27a4368b1436518f9f76c6e2e68f60b92a6.tar.lz
nixpkgs-fb59f27a4368b1436518f9f76c6e2e68f60b92a6.tar.xz
nixpkgs-fb59f27a4368b1436518f9f76c6e2e68f60b92a6.tar.zst
nixpkgs-fb59f27a4368b1436518f9f76c6e2e68f60b92a6.zip
WIP: getting good
Diffstat (limited to 'pkgs/tools/archivers/gnutar')
-rw-r--r--pkgs/tools/archivers/gnutar/default.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/pkgs/tools/archivers/gnutar/default.nix b/pkgs/tools/archivers/gnutar/default.nix
index 87324ac80a2..140294d987d 100644
--- a/pkgs/tools/archivers/gnutar/default.nix
+++ b/pkgs/tools/archivers/gnutar/default.nix
@@ -1,4 +1,4 @@
-{ stdenv, fetchurl }:
+{ stdenv, fetchurl, acl }:
 
 stdenv.mkDerivation rec {
   name = "gnutar-${version}";
@@ -9,6 +9,9 @@ stdenv.mkDerivation rec {
     sha256 = "1iip0fk0wqhxb0jcwphz43r4fxkx1y7mznnhmlvr618jhp7b63wv";
   };
 
+  outputs = [ "out" "info" ];
+  buildInputs = [ stdenv.hookLib.multiout acl ];
+
   # May have some issues with root compilation because the bootstrap tool
   # cannot be used as a login shell for now.
   FORCE_UNSAFE_CONFIGURE = stdenv.lib.optionalString (stdenv.system == "armv7l-linux" || stdenv.isSunOS) "1";