summary refs log tree commit diff
path: root/pkgs/shells/tcsh/default.nix
blob: 419acd8d61d20635f82dd481ee95368bd11c8274 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{ stdenv, fetchurl
, ncurses }:

stdenv.mkDerivation rec {
  name = "tcsh-${version}";
  version = "6.19.00";
  
  src = fetchurl {
    urls = [ 
             "http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/${name}.tar.gz" 
             "ftp://ftp.astron.com/pub/tcsh/${name}.tar.gz" 
             "ftp://ftp.funet.fi/pub/unix/shells/tcsh/${name}.tar.gz"
             ];
    sha256 = "0jaw51382pqyb6d1kgfg8ir0wd3p5qr2bmg8svcmjhlyp3h73qhj";
  };

  patches = [ ./avoid-gcc5-wrong-optimisation.patch ];
  
  buildInputs = [ ncurses ];

  meta = with stdenv.lib;{
    description = "An enhanced version of the Berkeley UNIX C shell (csh)";
    longDescription = ''
      tcsh is an enhanced but completely compatible version of the
      Berkeley UNIX C shell, csh. It is a command language interpreter
      usable both as an interactive login shell and a shell script
      command processor.
      It includes:
      - command-line editor
      - programmable word completion
      - spelling correction
      - history mechanism
      - job control
    '';
    homepage = http://www.tcsh.org/;
    license = licenses.bsd2;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = platforms.linux;
  };

  passthru = {
    shellPath = "/bin/tcsh";
  };
}