Unverified Commit 8e2fab86 authored by Anderson Torres's avatar Anderson Torres Committed by GitHub
Browse files

Merge pull request #132274 from AndersonTorres/new-shells

tcsh: 6.22.03 -> 6.22.04
parents 49a8e1c2 bbf384f4
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -4,7 +4,7 @@

stdenv.mkDerivation rec {
  pname = "tcsh";
  version = "6.22.03";
  version = "6.22.04";

  src = fetchurl {
    urls = [
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
      "ftp://ftp.funet.fi/pub/unix/shells/tcsh/${pname}-${version}.tar.gz"
      "ftp://ftp.funet.fi/pub/unix/shells/tcsh/old/${pname}-${version}.tar.gz"
    ];
    sha256 = "sha256-viz9ZT0qDH9QbS3RTBIyS6dJvUhAN75t9Eo5c/UiYrc=";
    hash = "sha256-6xY1YkMhjDLzngcljXK/iyHmLOlLsOipXjGLFROX4jE=";
  };

  buildInputs = [ ncurses ];
@@ -28,12 +28,13 @@ stdenv.mkDerivation rec {
    });

  meta = with lib; {
    homepage = "https://www.tcsh.org/";
    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.
      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
@@ -41,10 +42,9 @@ stdenv.mkDerivation rec {
      - history mechanism
      - job control
    '';
    homepage = "https://www.tcsh.org/";
    license = licenses.bsd2;
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = platforms.linux ++ platforms.darwin;
    platforms = platforms.unix;
  };

  passthru = {