Skip to content

Commit

Permalink
clisp: remove Darwin from meta.platforms for now
Browse files Browse the repository at this point in the history
It's problematic.  See #20062.
  • Loading branch information
vcunat committed Dec 4, 2016
1 parent ef080c9 commit 84d737c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkgs/development/interpreters/clisp/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ assert x11Support -> (libX11 != null && libXau != null && libXt != null
stdenv.mkDerivation rec {
v = "2.49";
name = "clisp-${v}";

src = fetchurl {
url = "mirror://gnu/clisp/release/${v}/${name}.tar.bz2";
sha256 = "8132ff353afaa70e6b19367a25ae3d5a43627279c25647c220641fed00f8e890";
Expand Down Expand Up @@ -92,6 +92,7 @@ stdenv.mkDerivation rec {
description = "ANSI Common Lisp Implementation";
homepage = http://clisp.cons.org;
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;
};
}

0 comments on commit 84d737c

Please sign in to comment.