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:
parent
40c759e027
commit
5669d9b47e
|
@ -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" {}
|
||||
''
|
||||
|
|
Loading…
Reference in a new issue