tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
blackmagic: fix darwin build
Emily Trau
2 years ago
e1d85a21
480f5b14
+1
-4
2 changed files
expand all
collapse all
unified
split
pkgs
development
embedded
blackmagic
default.nix
helper.sh
+1
-3
pkgs/development/embedded/blackmagic/default.nix
···
73
73
homepage = "https://github.com/blacksphere/blackmagic";
74
74
license = licenses.gpl3Plus;
75
75
maintainers = with maintainers; [ pjones emily sorki ];
76
76
-
# fails on darwin with
77
77
-
# arm-none-eabi-gcc: error: unrecognized command line option '-iframework'
78
78
-
platforms = platforms.linux;
76
76
+
platforms = platforms.unix;
79
77
};
80
78
}
-1
pkgs/development/embedded/blackmagic/helper.sh
···
9
9
out=${out:-/tmp}
10
10
11
11
################################################################################
12
12
-
export CFLAGS=$NIX_CFLAGS_COMPILE
13
12
export MAKEFLAGS="\
14
13
${enableParallelBuilding:+-j${NIX_BUILD_CORES}}"
15
14