add tcsh
svn path=/nixpkgs/trunk/; revision=4123
This commit is contained in:
parent
d785903b05
commit
e473e8691c
10
pkgs/shells/tcsh/default.nix
Normal file
10
pkgs/shells/tcsh/default.nix
Normal 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];
|
||||
}
|
@ -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;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user