mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
* Added GNU enscript.
svn path=/nixpkgs/trunk/; revision=1040
This commit is contained in:
parent
ef73044b61
commit
7226e94466
3 changed files with 14 additions and 0 deletions
|
@ -60,6 +60,10 @@ rec {
|
|||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
enscript = (import ../tools/text/enscript) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
ed = (import ../tools/text/ed) {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
|
|
@ -9,6 +9,7 @@ let {
|
|||
pkgs.gnused
|
||||
pkgs.gnugrep
|
||||
pkgs.gawk
|
||||
pkgs.enscript
|
||||
pkgs.gnutar
|
||||
pkgs.zip
|
||||
pkgs.unzip
|
||||
|
|
9
pkgs/tools/text/enscript/default.nix
Normal file
9
pkgs/tools/text/enscript/default.nix
Normal 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";
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue