boxfs: add darwin build

This commit is contained in:
midchildan 2021-03-27 16:05:28 +09:00
parent 467898029e
commit 651f214fb1
No known key found for this signature in database
GPG key ID: D9A5748BACC6E3C2

View file

@ -37,7 +37,10 @@ in stdenv.mkDerivation {
buildInputs = [ curl fuse libxml2 ];
nativeBuildInputs = [ pkg-config ];
buildFlags = [ "static" ];
buildFlags = [
"static"
"CC=${stdenv.cc.targetPrefix}cc"
] ++ lib.optional stdenv.isDarwin "CFLAGS=-D_BSD_SOURCE";
installPhase = ''
mkdir -p $out/bin
@ -55,6 +58,6 @@ in stdenv.mkDerivation {
'';
homepage = "https://github.com/drotiro/boxfs2";
license = licenses.gpl3;
platforms = platforms.linux;
platforms = platforms.unix;
};
}