mitscheme: unpin texinfo (#442896)

This commit is contained in:
Franz Pletz
2025-09-16 15:30:25 +00:00
committed by GitHub
2 changed files with 12 additions and 3 deletions
@@ -1,5 +1,6 @@
{
fetchurl,
fetchDebianPatch,
lib,
stdenv,
makeWrapper,
@@ -43,6 +44,16 @@ stdenv.mkDerivation {
sha256 = "035f92vni0vqmgj9hq2i7vwasz7crx52wll4823vhfkm1qdv5ywc";
};
patches = [
(fetchDebianPatch {
pname = "mit-scheme";
version = "12.1";
debianRevision = "4";
patch = "0006-texi2any-_html-fix.patch";
hash = "sha256-tTAK/xRGubQeiqe1Nbo+m3CYmscXxQ8HAlIl4kSZxk8=";
})
];
buildInputs = [ ncurses ] ++ lib.optionals enableX11 [ libX11 ];
configurePhase = ''
+1 -3
View File
@@ -5449,9 +5449,7 @@ with pkgs;
jdk_headless = openjdk8_headless; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
};
mitscheme = callPackage ../development/compilers/mit-scheme {
texinfo = texinfo6;
};
mitscheme = callPackage ../development/compilers/mit-scheme { };
mitschemeX11 = mitscheme.override {
enableX11 = true;