tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
mitscheme: unpin texinfo
Weijia Wang
4 months ago
053d5f37
28b38f0f
+12
-3
2 changed files
expand all
collapse all
unified
split
pkgs
development
compilers
mit-scheme
default.nix
top-level
all-packages.nix
+11
pkgs/development/compilers/mit-scheme/default.nix
···
1
{
2
fetchurl,
0
3
lib,
4
stdenv,
5
makeWrapper,
···
42
url = "mirror://gnu/mit-scheme/stable.pkg/${version}/mit-scheme-${version}-x86-64.tar.gz";
43
sha256 = "035f92vni0vqmgj9hq2i7vwasz7crx52wll4823vhfkm1qdv5ywc";
44
};
0
0
0
0
0
0
0
0
0
0
45
46
buildInputs = [ ncurses ] ++ lib.optionals enableX11 [ libX11 ];
47
···
1
{
2
fetchurl,
3
+
fetchDebianPatch,
4
lib,
5
stdenv,
6
makeWrapper,
···
43
url = "mirror://gnu/mit-scheme/stable.pkg/${version}/mit-scheme-${version}-x86-64.tar.gz";
44
sha256 = "035f92vni0vqmgj9hq2i7vwasz7crx52wll4823vhfkm1qdv5ywc";
45
};
46
+
47
+
patches = [
48
+
(fetchDebianPatch {
49
+
pname = "mit-scheme";
50
+
version = "12.1";
51
+
debianRevision = "4";
52
+
patch = "0006-texi2any-_html-fix.patch";
53
+
hash = "sha256-tTAK/xRGubQeiqe1Nbo+m3CYmscXxQ8HAlIl4kSZxk8=";
54
+
})
55
+
];
56
57
buildInputs = [ ncurses ] ++ lib.optionals enableX11 [ libX11 ];
58
+1
-3
pkgs/top-level/all-packages.nix
···
5496
jdk_headless = openjdk8_headless; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
5497
};
5498
5499
-
mitscheme = callPackage ../development/compilers/mit-scheme {
5500
-
texinfo = texinfo6;
5501
-
};
5502
5503
mitschemeX11 = mitscheme.override {
5504
enableX11 = true;
···
5496
jdk_headless = openjdk8_headless; # TODO: remove override https://github.com/NixOS/nixpkgs/pull/89731
5497
};
5498
5499
+
mitscheme = callPackage ../development/compilers/mit-scheme { };
0
0
5500
5501
mitschemeX11 = mitscheme.override {
5502
enableX11 = true;