Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

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

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

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