disable debug build on darwin

Currently broken due to the .dSYM folders it generates next to the binaries.

See https://github.com/NixOS/nixpkgs/pull/83488
This commit is contained in:
Daiderd Jordan 2020-04-25 14:36:46 +02:00
parent 40c759e027
commit 5669d9b47e
No known key found for this signature in database
GPG key ID: D02435D05B810C96

View file

@ -7,7 +7,7 @@ let
drv = ofborgCrates.ofborg {};
src = stripDeps (drv.override { release = false; });
src = stripDeps (drv.override { release = pkgs.stdenv.isDarwin; });
stripDeps = pkg: pkgs.runCommand "${pkg.name}-deps-stripped" {}
''