Skip to content

Commit

Permalink
isabelle: fix darwin build
Browse files Browse the repository at this point in the history
  • Loading branch information
Liamolucko committed Oct 12, 2024
1 parent 1f913e5 commit 5506c70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/by-name/is/isabelle/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,9 @@ in stdenv.mkDerivation (finalAttrs: rec {

nativeBuildInputs = [ java ];

buildInputs = [ polyml veriT vampire eprover-ho nettools ]
++ lib.optionals (!stdenv.hostPlatform.isDarwin) [ java procps ];
buildInputs = [ polyml veriT vampire eprover-ho nettools ];

propagatedBuildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ procps ];

sourceRoot = "${dirname}${lib.optionalString stdenv.hostPlatform.isDarwin ".app"}";

Expand Down Expand Up @@ -221,7 +222,6 @@ in stdenv.mkDerivation (finalAttrs: rec {
license = licenses.bsd3;
maintainers = [ maintainers.jwiegley maintainers.jvanbruegge ];
platforms = platforms.unix;
broken = stdenv.hostPlatform.isDarwin;
};

passthru.withComponents = f:
Expand Down

0 comments on commit 5506c70

Please sign in to comment.