Skip to content

feat(rust): make strip_level configurable via nixpkgs_rust_configure#635

Open
pcj wants to merge 1 commit intotweag:masterfrom
pcj:pcj/rust-strip-level
Open

feat(rust): make strip_level configurable via nixpkgs_rust_configure#635
pcj wants to merge 1 commit intotweag:masterfrom
pcj:pcj/rust-strip-level

Conversation

@pcj
Copy link

@pcj pcj commented Dec 31, 2024

In certain configurations it is necessary to disable stripping. This PR makes this a new optional attribute that is threaded through to the generated rust_toolchain. In the default case, the string "None" is rendered, which is the current implicit default.

Example:

nixpkgs_rust_configure(
    name = "nix_rust",
    default_edition = "2018",
    repository = "@nixpkgs",
    strip_level = {
        "dbg": "none",
        "fastbuild": "none",
        "opt": "none",
    },
)

In certain configurations it is necessary to disable stripping.
This PR makes this a new optional attribute that is threaded
through to the generated rust_toolchain.  In the default case,
the string "None" is rendered, which is the current implicit default.

Example:
```
nixpkgs_rust_configure(
    name = "nix_rust",
    default_edition = "2018",
    repository = "@nixpkgs",
    strip_level = {
        "dbg": "none",
        "fastbuild": "none",
        "opt": "none",
    },
)
```
@pcj pcj requested a review from a team as a code owner December 31, 2024 23:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

Comments