about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-12-11 00:51:39 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-12-11 00:51:39 +0000
commit52241b5b0f3cbcf4b6cec5a4dbdc486498e61744 (patch)
tree4e5f96de138e2c33ee8ab1348835ee776877ae2e /pkgs
parent7dfbf0eba7a0e98c16777e40ee0dcb034075a4ef (diff)
downloadnixlib-52241b5b0f3cbcf4b6cec5a4dbdc486498e61744.tar
nixlib-52241b5b0f3cbcf4b6cec5a4dbdc486498e61744.tar.gz
nixlib-52241b5b0f3cbcf4b6cec5a4dbdc486498e61744.tar.bz2
nixlib-52241b5b0f3cbcf4b6cec5a4dbdc486498e61744.tar.lz
nixlib-52241b5b0f3cbcf4b6cec5a4dbdc486498e61744.tar.xz
nixlib-52241b5b0f3cbcf4b6cec5a4dbdc486498e61744.tar.zst
nixlib-52241b5b0f3cbcf4b6cec5a4dbdc486498e61744.zip
* No longer needed - folded into the mingetty Upstart job.
svn path=/nixpkgs/trunk/; revision=7301
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/mingetty-wrapper/builder.sh12
-rw-r--r--pkgs/os-specific/linux/mingetty-wrapper/default.nix11
-rw-r--r--pkgs/top-level/all-packages.nix4
3 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/os-specific/linux/mingetty-wrapper/builder.sh b/pkgs/os-specific/linux/mingetty-wrapper/builder.sh
deleted file mode 100644
index 3797b62340c9..000000000000
--- a/pkgs/os-specific/linux/mingetty-wrapper/builder.sh
+++ /dev/null
@@ -1,12 +0,0 @@
-source $stdenv/setup
-#. $makeWrapper
-
-ensureDir "$(dirname $out)"
-ensureDir "$(dirname $out/sbin/mingetty)"
-
-cat > $out/sbin/mingetty << END
-#! $SHELL -e
-exec $mingetty/sbin/mingetty --loginprog=$shadowutils/bin/login "\$@"
-END
-
-chmod +x $out/sbin/mingetty
diff --git a/pkgs/os-specific/linux/mingetty-wrapper/default.nix b/pkgs/os-specific/linux/mingetty-wrapper/default.nix
deleted file mode 100644
index 4470c87c4a4f..000000000000
--- a/pkgs/os-specific/linux/mingetty-wrapper/default.nix
+++ /dev/null
@@ -1,11 +0,0 @@
-{stdenv, mingetty, shadowutils}:
-
-stdenv.mkDerivation {
-  name = mingetty.name;
-
-  builder = ./builder.sh;
-  makeWrapper = ../../../build-support/make-wrapper/make-wrapper.sh;
-
-  inherit mingetty shadowutils;
-
-}
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 08222caf6cd0..69e0068032f9 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -2160,10 +2160,6 @@ rec {
     inherit fetchurl stdenv;
   };
 
-  mingettyWrapper = import ../os-specific/linux/mingetty-wrapper {
-    inherit stdenv mingetty shadowutils;
-  };
-
   mkinitrd = import ../os-specific/linux/mkinitrd {
     inherit fetchurl stdenv;
     popt = popt110;