about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@thalheim.io>2024-05-28 08:07:00 +0200
committerJörg Thalheim <joerg@thalheim.io>2024-05-29 06:21:54 +0200
commit59135e4435c961f37784ac703dcc01e108828820 (patch)
treebf4030b9facdb9104c64264ca8db7fffa22e8b00 /pkgs/shells
parentfda42f1beeda22cfe110562f5da943420eb06a09 (diff)
jush: drop shell
It hasn't received significant updates after its initial development 5
years ago. It seems more like a proof of concept of editline.
I was trivially able to crash the shell multiple times by providing
invalid syntax. Given the feature set I doubt that it has many users.
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/jush/default.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/shells/jush/default.nix b/pkgs/shells/jush/default.nix
deleted file mode 100644
index 42e8e13cceae6..0000000000000
--- a/pkgs/shells/jush/default.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, pkg-config, editline }:
-
-stdenv.mkDerivation rec {
-  pname = "jush";
-  version = "0.1";
-
-  src = fetchFromGitHub {
-    owner = "troglobit";
-    repo = pname;
-    rev = "v${version}";
-    sha256 = "1azvghrh31gawd798a254ml4id642qvbva64zzg30pjszh1087n8";
-  };
-
-  strictDeps = true;
-  nativeBuildInputs = [ autoreconfHook pkg-config ];
-
-  buildInputs = [ editline ];
-
-  passthru.shellPath = "/bin/jush";
-
-  meta = with lib; {
-    description = "just a useless shell";
-    mainProgram = "jush";
-    homepage = "https://github.com/troglobit/jush";
-    license = licenses.isc;
-    platforms = platforms.all;
-    maintainers = with maintainers; [ dtzWill ];
-  };
-}