svn path=/nixpkgs/trunk/; revision=4123
This commit is contained in:
Armijn Hemel 2005-10-24 15:15:34 +00:00
parent d785903b05
commit e473e8691c
2 changed files with 18 additions and 0 deletions

View File

@ -0,0 +1,10 @@
{stdenv, fetchurl, ncurses}:
stdenv.mkDerivation {
name = "tcsh-6.14.00";
src = fetchurl {
url = ftp://ftp.gw.com/pub/unix/tcsh/tcsh-6.14.00.tar.gz;
md5 = "353d1bb7d2741bf8de602c7b6f0efd79";
};
buildInputs = [ncurses];
}

View File

@ -284,6 +284,10 @@ rec {
inherit fetchurl stdenv;
};
tcsh = (import ../shells/tcsh) {
inherit fetchurl stdenv ncurses;
};
#bashDiet = (import ../shells/bash-diet) {
# inherit fetchurl stdenv dietgcc;
#};
@ -1373,6 +1377,10 @@ rec {
### APPLICATIONS
#openoffice = (import ../applications/office/openoffice) {
# inherit fetchurl stdenv tcsh;
#};
cvs = (import ../applications/version-management/cvs) {
inherit fetchurl stdenv vim;
};