46 lines
1.2 KiB
Nix
46 lines
1.2 KiB
Nix
|
|
{ stdenv, utils, callPackage,
|
|
buildGoPackage, go, xcodeWrapper }:
|
|
|
|
{ owner, repo, rev, version, goPackagePath, src, host,
|
|
|
|
# desktop-only arguments
|
|
goBuildFlags, goBuildLdFlags,
|
|
outputFileName,
|
|
hostSystem } @ args':
|
|
|
|
let
|
|
buildStatusGo = callPackage ./build-status-go.nix {
|
|
inherit buildGoPackage go xcodeWrapper utils;
|
|
};
|
|
|
|
args = removeAttrs args' [
|
|
"goBuildFlags"
|
|
"goBuildLdFlags"
|
|
"outputFileName"
|
|
"hostSystem"
|
|
]; # Remove desktop-only arguments from args
|
|
buildStatusGoDesktopLib = buildStatusGo (args // {
|
|
buildMessage = "Building desktop library";
|
|
#GOOS=windows GOARCH=amd64 CGO_ENABLED=1 go build ${goBuildFlags} -buildmode=c-archive -o $out/${outputFileName} ./lib
|
|
buildPhase = ''
|
|
pushd "$NIX_BUILD_TOP/go/src/${goPackagePath}" >/dev/null
|
|
|
|
go build -o $out/${outputFileName} ${goBuildFlags} -buildmode=c-archive ${goBuildLdFlags} ./lib
|
|
|
|
popd >/dev/null
|
|
'';
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/lib/${hostSystem} $out/include
|
|
mv $out/${outputFileName} $out/lib/${hostSystem}
|
|
mv $out/libstatus.h $out/include
|
|
'';
|
|
|
|
outputs = [ "out" ];
|
|
|
|
meta = { platforms = with stdenv.lib.platforms; linux ++ darwin; };
|
|
});
|
|
|
|
in buildStatusGoDesktopLib
|