Skip to content

Commit 39b7652

Browse files
committed
uasm: mark as broken in darwin
1 parent 64543f6 commit 39b7652

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

pkgs/by-name/ua/uasm/package.nix

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@
66
uasm,
77
}:
88

9-
gcc13Stdenv.mkDerivation rec {
9+
let
10+
stdenv = gcc13Stdenv;
11+
in
12+
stdenv.mkDerivation rec {
1013
pname = "uasm";
1114
version = "2.57";
1215

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

28-
makeFlags = [ "CC=${gcc13Stdenv.cc.targetPrefix}cc" ];
31+
makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
2932

3033
installPhase = ''
3134
runHook preInstall
@@ -49,5 +52,6 @@ gcc13Stdenv.mkDerivation rec {
4952
platforms = platforms.unix;
5053
maintainers = with maintainers; [ thiagokokada ];
5154
license = licenses.watcom;
55+
broken = stdenv.isDarwin;
5256
};
5357
}

0 commit comments

Comments
 (0)