-
Notifications
You must be signed in to change notification settings - Fork 7
Update libchallenge bypass ristretto ffi #106
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
Changes from all commits
5b77e72
3806636
253be20
1231602
4116dd6
22c9868
9232d31
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,8 @@ | ||
| # Provide the ffi bindings to the Rust challenge-bypass-ristretto library. | ||
| { fetchFromGitHub, callPackage }: | ||
| let | ||
| src = import ./challenge-bypass-ristretto-repo.nix; | ||
| sources = import ./sources.nix; | ||
| in | ||
| import "${src}/default-challenge-bypass-ristretto-ffi.nix" { } | ||
| { callPackage | ||
|
Contributor
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. I guess this means that we use whatever pinned version of nixpkgs that we get from haskell.nix for compiling the rust library. I wonder if we should instead be using our own pin, which we can update on our own schedule (in practice, we'd pass in the version from I think for the haskell packages, it makes sense to use the However, this is out-of-scope for this PR.
Collaborator
Author
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. Ah yea, that sounds like a reasonable future change. |
||
| , libchallenge_bypass_ristretto_ffi_repo ? sources.libchallenge_bypass_ristretto_ffi | ||
| }: | ||
| callPackage "${libchallenge_bypass_ristretto_ffi_repo}/challenge-bypass-ristretto.nix" { } | ||
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.
I guess the only place this was being used was for the
fetchFromGitHubcall innix/challenge-bypass-ristretto-repo.nixso is now unneeded.