tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
racket-minimal: apply upstream patch for darwin
ethanbodzioney
10 months ago
d59541c9
691cdbc3
+8
-1
1 changed file
expand all
collapse all
unified
split
pkgs
development
interpreters
racket
minimal.nix
+8
-1
pkgs/development/interpreters/racket/minimal.nix
···
1
1
{
2
2
lib,
3
3
stdenv,
4
4
+
fetchpatch,
4
5
fetchurl,
5
6
6
7
libiconvReal,
···
49
50
circumvent this error.
50
51
*/
51
52
./patches/force-remove-codesign-then-add.patch
53
53
+
54
54
+
(fetchpatch {
55
55
+
name = "darwin-cs-preprocess.patch";
56
56
+
url = "https://github.com/racket/racket/commit/ee9fb20a10a1a8e36650681afcafe99f0b044423.patch";
57
57
+
hash = "sha256-9aTRzfd3dwznfJg0fwsjhN4SYgXncrGyBCbcmKlxlio=";
58
58
+
stripLen = 1;
59
59
+
})
52
60
];
53
61
54
62
preConfigure =
···
168
176
maintainers = with lib.maintainers; [ rc-zb ];
169
177
mainProgram = "racket";
170
178
platforms = lib.platforms.all;
171
171
-
badPlatforms = lib.platforms.darwin;
172
179
};
173
180
})