about summary refs log tree commit diff
path: root/pkgs/by-name/tc
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/by-name/tc
parent695ec163844aa9942b1e0cd2e36dfd16d7911044 (diff)
tcsh: migrate to by-name
Diffstat (limited to 'pkgs/by-name/tc')
-rw-r--r--pkgs/by-name/tc/tcsh/package.nix50
1 files changed, 50 insertions, 0 deletions
diff --git a/pkgs/by-name/tc/tcsh/package.nix b/pkgs/by-name/tc/tcsh/package.nix
new file mode 100644
index 0000000000000..4fa358fbb7c31
--- /dev/null
+++ b/pkgs/by-name/tc/tcsh/package.nix
@@ -0,0 +1,50 @@
+{ 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;
+  };
+})