-
Notifications
You must be signed in to change notification settings - Fork 89
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
Build kinds support #285
base: master
Are you sure you want to change the base?
Build kinds support #285
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -106,6 +106,11 @@ rec { | |
{ | ||
name = {{ bin.name }}; | ||
path = {{ bin.src_path }}; | ||
kind = {{ bin.kind }}; | ||
test = {{ bin.test }}; | ||
# TODO (when cargo merges metadata): | ||
# harness | ||
# bench | ||
Comment on lines
+111
to
+113
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Your PR rust-lang/cargo#11847 got closed due to inactivity. Do you still intend to resume this? |
||
requiredFeatures = [ {% for feature in bin.required_features %}{{feature}} {% endfor %}]; | ||
} | ||
{%- endfor %} | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,15 +48,15 @@ | |
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz" | ||
}, | ||
"nixpkgs": { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👀 |
||
"branch": "nixos-unstable", | ||
"description": "A read-only mirror of NixOS/nixpkgs tracking the released channels. Send issues and PRs to", | ||
"homepage": "https://github.com/NixOS/nixpkgs", | ||
"owner": "NixOS", | ||
"branch": "brc-kinds", | ||
"description": "Nix Packages collection", | ||
"homepage": "", | ||
"owner": "jordanisaacs", | ||
"repo": "nixpkgs", | ||
"rev": "0c4800d579af4ed98ecc47d464a5e7b0870c4b1f", | ||
"sha256": "00gx09447gzgxlzwih4hdj51sdg62xanikkgr4bv4y7fpm98qirq", | ||
"rev": "ba1f86f0f8c155b1d10fa306cdd321cd91c73bba", | ||
"sha256": "070bcm65fl086f96hw7f4wy5n3f3xc6clriiqmciq6rc692a5lxx", | ||
"type": "tarball", | ||
"url": "https://github.com/NixOS/nixpkgs/archive/0c4800d579af4ed98ecc47d464a5e7b0870c4b1f.tar.gz", | ||
"url": "https://github.com/jordanisaacs/nixpkgs/archive/ba1f86f0f8c155b1d10fa306cdd321cd91c73bba.tar.gz", | ||
"url_template": "https://github.com/<owner>/<repo>/archive/<rev>.tar.gz" | ||
}, | ||
"nixpkgs-mozilla": { | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.