about summary refs log tree commit diff
path: root/nixpkgs/pkgs/shells/tcsh/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/shells/tcsh/default.nix')
-rw-r--r--nixpkgs/pkgs/shells/tcsh/default.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/nixpkgs/pkgs/shells/tcsh/default.nix b/nixpkgs/pkgs/shells/tcsh/default.nix
deleted file mode 100644
index 4fa358fbb7c3..000000000000
--- a/nixpkgs/pkgs/shells/tcsh/default.nix
+++ /dev/null
@@ -1,50 +0,0 @@
-{ lib
-, stdenv
-, fetchurl
-, libxcrypt
-, ncurses
-, buildPackages
-}:
-
-stdenv.mkDerivation (finalAttrs: {
-  pname = "tcsh";
-  version = "6.24.10";
-
-  src = fetchurl {
-    url = "mirror://tcsh/tcsh-${finalAttrs.version}.tar.gz";
-    hash = "sha256-E0dcD763QTnTPteTvwD/u7KsLcn7HURGekEHYKujZmQ=";
-  };
-
-  strictDeps = true;
-
-  depsBuildBuild = [
-    buildPackages.stdenv.cc
-  ];
-
-  buildInputs = [
-    libxcrypt
-    ncurses
-  ];
-
-  passthru.shellPath = "/bin/tcsh";
-
-  meta = {
-    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.
-
-      It includes:
-      - command-line editor
-      - programmable word completion
-      - spelling correction
-      - history mechanism
-      - job control
-    '';
-    license = lib.licenses.bsd2;
-    maintainers = with lib.maintainers; [ AndersonTorres ];
-    platforms = lib.platforms.unix;
-  };
-})