about summary refs log tree commit diff
path: root/pkgs/system/all-packages-generic.nix
diff options
context:
space:
mode:
authorArmijn Hemel <armijn@gpl-violations.org>2004-08-30 11:44:51 +0000
committerArmijn Hemel <armijn@gpl-violations.org>2004-08-30 11:44:51 +0000
commit38f6f3688958ad8379cc110834c5423bd3436fcc (patch)
tree703330f3e30282a61b13f00ee634c827c7252f27 /pkgs/system/all-packages-generic.nix
parenta2f6474f4d20a387834565bddb20ea9d214b46c6 (diff)
downloadnixlib-38f6f3688958ad8379cc110834c5423bd3436fcc.tar
nixlib-38f6f3688958ad8379cc110834c5423bd3436fcc.tar.gz
nixlib-38f6f3688958ad8379cc110834c5423bd3436fcc.tar.bz2
nixlib-38f6f3688958ad8379cc110834c5423bd3436fcc.tar.lz
nixlib-38f6f3688958ad8379cc110834c5423bd3436fcc.tar.xz
nixlib-38f6f3688958ad8379cc110834c5423bd3436fcc.tar.zst
nixlib-38f6f3688958ad8379cc110834c5423bd3436fcc.zip
add shadowutils, with the following limitations:
- tools can only be run as root, because there's no store support for UNIX permissions

svn path=/nixpkgs/trunk/; revision=1361
Diffstat (limited to 'pkgs/system/all-packages-generic.nix')
-rw-r--r--pkgs/system/all-packages-generic.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/pkgs/system/all-packages-generic.nix b/pkgs/system/all-packages-generic.nix
index 9ecc2c515cbb..020ae8b106cb 100644
--- a/pkgs/system/all-packages-generic.nix
+++ b/pkgs/system/all-packages-generic.nix
@@ -672,6 +672,10 @@ rec {
     inherit fetchurl stdenv;
   };
 
+  shadowutils = (import ../os-specific/linux/shadow) {
+    inherit fetchurl stdenv;
+  };
+
   iputils = (import ../os-specific/linux/iputils) {
     inherit fetchurl stdenv kernelHeaders;
     glibc = stdenv.gcc.glibc;