clisp: remove Darwin from meta.platforms for now
It's problematic. See #20062.
This commit is contained in:
parent
ef080c9df4
commit
84d737cfe9
|
@ -26,7 +26,7 @@ assert x11Support -> (libX11 != null && libXau != null && libXt != null
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
v = "2.49";
|
v = "2.49";
|
||||||
name = "clisp-${v}";
|
name = "clisp-${v}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/clisp/release/${v}/${name}.tar.bz2";
|
url = "mirror://gnu/clisp/release/${v}/${name}.tar.bz2";
|
||||||
sha256 = "8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890";
|
sha256 = "8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890";
|
||||||
|
@ -92,6 +92,7 @@ stdenv.mkDerivation rec {
|
||||||
description = "ANSI Common Lisp Implementation";
|
description = "ANSI Common Lisp Implementation";
|
||||||
homepage = http://clisp.cons.org;
|
homepage = http://clisp.cons.org;
|
||||||
maintainers = with stdenv.lib.maintainers; [raskin tohl];
|
maintainers = with stdenv.lib.maintainers; [raskin tohl];
|
||||||
platforms = stdenv.lib.platforms.unix;
|
# problems on Darwin: https://github.com/NixOS/nixpkgs/issues/20062
|
||||||
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue