Skip to content

Commit

Permalink
uasm: mark as broken in darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
thiagokokada committed Dec 28, 2024
1 parent 64543f6 commit 39b7652
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions pkgs/by-name/ua/uasm/package.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,10 @@
uasm,
}:

gcc13Stdenv.mkDerivation rec {
let
stdenv = gcc13Stdenv;
in
stdenv.mkDerivation rec {
pname = "uasm";
version = "2.57";

Expand All @@ -25,7 +28,7 @@ gcc13Stdenv.mkDerivation rec {
else
"Makefile-Linux-GCC-64.mak";

makeFlags = [ "CC=${gcc13Stdenv.cc.targetPrefix}cc" ];
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];

installPhase = ''
runHook preInstall
Expand All @@ -49,5 +52,6 @@ gcc13Stdenv.mkDerivation rec {
platforms = platforms.unix;
maintainers = with maintainers; [ thiagokokada ];
license = licenses.watcom;
broken = stdenv.isDarwin;
};
}

0 comments on commit 39b7652

Please sign in to comment.