Merge pull request #294889 from marsam/update-scsh

scsh: 0.7pre -> unstable-2024-03-10

authored by Mario Rodas and committed by GitHub 54dce4f0 623efb94

+6 -13
+6 -13
pkgs/development/interpreters/scsh/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, autoreconfHook, scheme48, fetchpatch }: 2 3 stdenv.mkDerivation { 4 pname = "scsh"; 5 - version = "0.7pre"; 6 7 src = fetchFromGitHub { 8 owner = "scheme"; 9 repo = "scsh"; 10 - rev = "4acf6e4ed7b65b46186ef0c9c2a1e10bef8dc052"; 11 - sha256 = "sha256-92NtMK5nVd6+WtHj/Rk6iQEkGsNEZySTVZkkbqKrLYY="; 12 fetchSubmodules = true; 13 }; 14 15 - patches = [ 16 - # Don't not include util.h if libutil.h is available 17 - # https://github.com/scheme/scsh/pull/49 18 - (fetchpatch { 19 - url = "https://github.com/scheme/scsh/commit/b04e902de983761d7f432b2cfa364ca5d162a364.patch"; 20 - hash = "sha256-XSHzzCOBkraqW2re1ePoFl9tKQB81iQ0W9wvv83iGdA="; 21 - }) 22 - ]; 23 - 24 nativeBuildInputs = [ autoreconfHook ]; 25 buildInputs = [ scheme48 ]; 26 configureFlags = [ "--with-scheme48=${scheme48}" ]; 27 28 meta = with lib; { 29 description = "A Scheme shell";
··· 1 + { lib, stdenv, fetchFromGitHub, autoreconfHook, scheme48, unstableGitUpdater }: 2 3 stdenv.mkDerivation { 4 pname = "scsh"; 5 + version = "0.7-unstable-2024-03-09"; 6 7 src = fetchFromGitHub { 8 owner = "scheme"; 9 repo = "scsh"; 10 + rev = "6770db21b08edd907d1c9bd962297ff55664e3fe"; 11 + hash = "sha256-U95Rc/Ks5AytB5UwbzQLI3/Sj4TYybrp8/45fu9krSU="; 12 fetchSubmodules = true; 13 }; 14 15 nativeBuildInputs = [ autoreconfHook ]; 16 buildInputs = [ scheme48 ]; 17 configureFlags = [ "--with-scheme48=${scheme48}" ]; 18 + 19 + passthru.updateScript = unstableGitUpdater { }; 20 21 meta = with lib; { 22 description = "A Scheme shell";