-
-
Notifications
You must be signed in to change notification settings - Fork 15.5k
ipxe: ebf2eaf515e46abd43bc798e7e4ba77bfe529218 --> 1.20.1 #78150
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
Conversation
cc @cleverca22 |
Since we are no longer using a specific revision, but a release tag, then it's not necessary to name it like this. It should be done to just use And then we can use
|
OK, @CMCDragonkai . I will update accordingly. |
bcd049d
to
8f2357d
Compare
pkgs/tools/misc/ipxe/default.nix
Outdated
src = fetchFromGitHub { | ||
owner = "ipxe"; | ||
repo = "ipxe"; | ||
rev = "v1.20.1"; |
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.
rev = "v1.20.1"; | |
rev = "v${version}"; |
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.
done.
pkgs/tools/misc/ipxe/default.nix
Outdated
@@ -20,14 +18,16 @@ let | |||
in | |||
|
|||
stdenv.mkDerivation { |
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.
Also needs rec
so that version
can be used in fetchFromGitHub
stdenv.mkDerivation { | |
stdenv.mkDerivation rec { |
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.
done.
8f2357d
to
c4df7fa
Compare
Hi @Mic92 , I have added the suggested changes. Thanks. |
@GrahamcOfBorg build ipxe |
Motivation for this change
ipxe: ebf2eaf515e46abd43bc798e7e4ba77bfe529218 --> 1.20.1
Things done
sandbox
innix.conf
on non-NixOS linux)nix-shell -p nixpkgs-review --run "nixpkgs-review wip"
./result/bin/
)nix path-info -S
before and after)@CMCDragonkai