add mingetty

svn path=/nixpkgs/trunk/; revision=3250
This commit is contained in:
Armijn Hemel
2005-06-23 13:54:34 +00:00
parent 39d6e0a2ed
commit 078e602efc
3 changed files with 39 additions and 0 deletions
@@ -0,0 +1,11 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "mingetty-1.07";
builder = ./builder.sh;
src = fetchurl {
url = ftp://ftp.nluug.nl/pub/os/Linux/distr/debian/pool/main/m/mingetty/mingetty_1.07.orig.tar.gz;
md5 = "491dedf1ceff0e0f5f7bb9f55bf5213e";
};
patches = [./makefile.patch];
}