* Added GNU enscript.

svn path=/nixpkgs/trunk/; revision=1040
This commit is contained in:
Eelco Dolstra 2004-06-03 17:16:16 +00:00
parent ef73044b61
commit 7226e94466
3 changed files with 14 additions and 0 deletions

View File

@ -60,6 +60,10 @@ rec {
inherit fetchurl stdenv;
};
enscript = (import ../tools/text/enscript) {
inherit fetchurl stdenv;
};
ed = (import ../tools/text/ed) {
inherit fetchurl stdenv;
};

View File

@ -9,6 +9,7 @@ let {
pkgs.gnused
pkgs.gnugrep
pkgs.gawk
pkgs.enscript
pkgs.gnutar
pkgs.zip
pkgs.unzip

View File

@ -0,0 +1,9 @@
{stdenv, fetchurl}:
stdenv.mkDerivation {
name = "enscript-1.6.4";
src = fetchurl {
url = http://www.iki.fi/mtr/genscript/enscript-1.6.4.tar.gz;
md5 = "b5174b59e4a050fb462af5dbf28ebba3";
};
}