commit 4588afe2d87c376d3169d866c05be35e7a6e0c1e
parent 25ae5a7666c8df0b551cacd7f90bfc4baba4b5da
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date: Sun, 15 Mar 2026 13:57:24 +0400
Drop schemesh
Diffstat:
1 file changed, 0 insertions(+), 40 deletions(-)
diff --git a/pkgs/by-name/sc/schemesh/package.nix b/pkgs/by-name/sc/schemesh/package.nix
@@ -1,40 +0,0 @@
-{
- lib,
- stdenv,
- fetchFromGitHub,
- chez,
- libuuid,
- lz4,
- ncurses,
- zlib,
-}:
-
-stdenv.mkDerivation (finalAttrs: {
- pname = "schemesh";
- version = "0.9.3";
-
- src = fetchFromGitHub {
- owner = "cosmos72";
- repo = "schemesh";
- tag = "v${finalAttrs.version}";
- hash = "sha256-OhQpXFg3eroVpw4zkENM4zwqHqGNolstlq9oLhQ2cbY=";
- };
-
- buildInputs = [
- chez
- libuuid
- lz4
- ncurses
- zlib
- ];
-
- makeFlags = [ "prefix=$(out)" ];
-
- meta = {
- description = "A Unix shell and Lisp REPL, fused together";
- homepage = "https://github.com/cosmos72/schemesh";
- license = lib.licenses.gpl2Plus;
- maintainers = [ lib.maintainers.sikmir ];
- platforms = lib.platforms.unix;
- };
-})