about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2024-03-10 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2024-03-10 04:20:00 +0000
commit7de0429c2511d507cffe0df99e12a66e43cae020 (patch)
treee730835edab3cb815f2af35bb8923cd254b7e523 /pkgs
parent7eeacecff44e05a9fd61b9e03836b66ecde8a525 (diff)
downloadnixlib-7de0429c2511d507cffe0df99e12a66e43cae020.tar
nixlib-7de0429c2511d507cffe0df99e12a66e43cae020.tar.gz
nixlib-7de0429c2511d507cffe0df99e12a66e43cae020.tar.bz2
nixlib-7de0429c2511d507cffe0df99e12a66e43cae020.tar.lz
nixlib-7de0429c2511d507cffe0df99e12a66e43cae020.tar.xz
nixlib-7de0429c2511d507cffe0df99e12a66e43cae020.tar.zst
nixlib-7de0429c2511d507cffe0df99e12a66e43cae020.zip
scsh: 0.7pre -> 0.7-unstable-2024-03-09
Diff: https://github.com/scheme/scsh/compare/4acf6e4ed7b65b46186ef0c9c2a1e10bef8dc052...6770db21b08edd907d1c9bd962297ff55664e3fe
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/interpreters/scsh/default.nix17
1 files changed, 4 insertions, 13 deletions
diff --git a/pkgs/development/interpreters/scsh/default.nix b/pkgs/development/interpreters/scsh/default.nix
index b3b7db8537a2..085bc18fcd8b 100644
--- a/pkgs/development/interpreters/scsh/default.nix
+++ b/pkgs/development/interpreters/scsh/default.nix
@@ -1,26 +1,17 @@
-{ lib, stdenv, fetchFromGitHub, autoreconfHook, scheme48, fetchpatch }:
+{ lib, stdenv, fetchFromGitHub, autoreconfHook, scheme48 }:
 
 stdenv.mkDerivation {
   pname = "scsh";
-  version = "0.7pre";
+  version = "0.7-unstable-2024-03-09";
 
   src = fetchFromGitHub {
     owner = "scheme";
     repo = "scsh";
-    rev = "4acf6e4ed7b65b46186ef0c9c2a1e10bef8dc052";
-    sha256 = "sha256-92NtMK5nVd6+WtHj/Rk6iQEkGsNEZySTVZkkbqKrLYY=";
+    rev = "6770db21b08edd907d1c9bd962297ff55664e3fe";
+    hash = "sha256-U95Rc/Ks5AytB5UwbzQLI3/Sj4TYybrp8/45fu9krSU=";
     fetchSubmodules = true;
   };
 
-  patches = [
-    # Don't not include util.h if libutil.h is available
-    # https://github.com/scheme/scsh/pull/49
-    (fetchpatch {
-      url = "https://github.com/scheme/scsh/commit/b04e902de983761d7f432b2cfa364ca5d162a364.patch";
-      hash = "sha256-XSHzzCOBkraqW2re1ePoFl9tKQB81iQ0W9wvv83iGdA=";
-    })
-  ];
-
   nativeBuildInputs = [ autoreconfHook ];
   buildInputs = [ scheme48 ];
   configureFlags = [ "--with-scheme48=${scheme48}" ];