We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 64543f6 commit 39b7652Copy full SHA for 39b7652
pkgs/by-name/ua/uasm/package.nix
@@ -6,7 +6,10 @@
6
uasm,
7
}:
8
9
-gcc13Stdenv.mkDerivation rec {
+let
10
+ stdenv = gcc13Stdenv;
11
+in
12
+stdenv.mkDerivation rec {
13
pname = "uasm";
14
version = "2.57";
15
@@ -25,7 +28,7 @@ gcc13Stdenv.mkDerivation rec {
25
28
else
26
29
"Makefile-Linux-GCC-64.mak";
27
30
- makeFlags = [ "CC=${gcc13Stdenv.cc.targetPrefix}cc" ];
31
+ makeFlags = [ "CC=${stdenv.cc.targetPrefix}cc" ];
32
33
installPhase = ''
34
runHook preInstall
@@ -49,5 +52,6 @@ gcc13Stdenv.mkDerivation rec {
49
52
platforms = platforms.unix;
50
53
maintainers = with maintainers; [ thiagokokada ];
51
54
license = licenses.watcom;
55
+ broken = stdenv.isDarwin;
56
};
57
}
0 commit comments