about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2023-09-09 17:11:50 -0300
committerAnderson Torres <torres.anderson.85@protonmail.com>2023-09-10 01:35:11 +0000
commitf49b186df24d55d8d16040a1c8b90a14ede76eb2 (patch)
tree8d4080ab05c3960cfe302eed2c072ce50103613a /pkgs/shells
parent695ec163844aa9942b1e0cd2e36dfd16d7911044 (diff)
tcsh: migrate to by-name
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/tcsh/default.nix50
1 files changed, 0 insertions, 50 deletions
diff --git a/pkgs/shells/tcsh/default.nix b/pkgs/shells/tcsh/default.nix
deleted file mode 100644
index 4fa358fbb7c31..0000000000000
--- a/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;
-  };
-})