about summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorJörg Thalheim <Mic92@users.noreply.github.com>2024-05-29 06:48:24 +0200
committerGitHub <noreply@github.com>2024-05-29 06:48:24 +0200
commit112ada33205f6a32eece319202a6ba291f62db1d (patch)
tree3ee22b7e6575963d22c8e236b18ea5b4ede52f6c /pkgs/shells
parent555243d8d9548467a44efd0a7ac3b0001c01bafd (diff)
parent59135e4435c961f37784ac703dcc01e108828820 (diff)
Merge pull request #314657 from Mic92/editline
editline: enable sigstop
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 ];
-  };
-}