Merge pull request #225650 from wegank/boundary-darwin

boundary: fix build on x86_64-darwin
This commit is contained in:
Weijia Wang 2023-04-11 09:12:48 +03:00 committed by GitHub
commit 74fedb3cc6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,6 +45,7 @@ stdenv.mkDerivation rec {
dontPatchELF = true;
dontPatchShebangs = true;
dontStrip = true;
passthru.updateScript = ./update.sh;
@ -64,5 +65,6 @@ stdenv.mkDerivation rec {
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
license = licenses.mpl20;
maintainers = with maintainers; [ jk techknowlogick ];
platforms = platforms.unix;
};
}