mitscheme: unpin texinfo

Changed files
+12 -3
pkgs
development
compilers
mit-scheme
top-level
+11
pkgs/development/compilers/mit-scheme/default.nix
···
{
fetchurl,
+
fetchDebianPatch,
lib,
stdenv,
makeWrapper,
···
url = "mirror://gnu/mit-scheme/stable.pkg/${version}/mit-scheme-${version}-x86-64.tar.gz";
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 ];
+1 -3
pkgs/top-level/all-packages.nix
···
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;