mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
sbcl: fix a thread safety bug with an upstream patch
This commit is contained in:
parent
c9c1e88dbb
commit
e0fd84cf43
@ -1,4 +1,4 @@
|
||||
{ stdenv, fetchurl, writeText, sbclBootstrap
|
||||
{ stdenv, fetchurl, fetchpatch, writeText, sbclBootstrap
|
||||
, sbclBootstrapHost ? "${sbclBootstrap}/bin/sbcl --disable-debugger --no-userinit --no-sysinit"
|
||||
, threadSupport ? (stdenv.isi686 || stdenv.isx86_64 || "aarch64-linux" == stdenv.hostPlatform.system)
|
||||
# Meant for sbcl used for creating binaries portable to non-NixOS via save-lisp-and-die.
|
||||
@ -19,7 +19,19 @@ stdenv.mkDerivation rec {
|
||||
|
||||
buildInputs = [texinfo];
|
||||
|
||||
patches = [
|
||||
# 1.4.15 bug, run-program thread safety, remove for 1.4.16
|
||||
(fetchpatch {
|
||||
url = "https://github.com/sbcl/sbcl/commit/c80672bedb1e4bc16124d0d01d7e37f94dd17a5a.patch";
|
||||
sha256 = "0pjm9yajwij59gdkqhid7sbgmb8z57cz8zrsikxg7yzfgr7sa7hy";
|
||||
})
|
||||
];
|
||||
|
||||
patchPhase = ''
|
||||
for patch in ${toString patches}; do
|
||||
patch -Np1 -i "$patch"
|
||||
done
|
||||
|
||||
echo '"${version}.nixos"' > version.lisp-expr
|
||||
echo "
|
||||
(lambda (features)
|
||||
|
Loading…
Reference in New Issue
Block a user