-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
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
nix-review: 0.4.0 -> 0.5.0 #45267
nix-review: 0.4.0 -> 0.5.0 #45267
Conversation
]} | ||
''; | ||
makeWrapperArgs = [ | ||
"--prefix" "PATH" ":" "${lib.makeBinPath [ nix git ]}" |
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.
why can't those be detected from buildInputs
or nativeBuildInputs
by make script?
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.
It is a setuptools project, there is no way to detect from there. Also it would be wrong to capture the PATH at build time with respect to cross compilation. A hack would be to add it to propagatedBuildInputs
which works because of the way buildPythonPackage works. But this is also incorrect because it is a runtime dependency not a build time dependency.
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 see this is common pattern:
$ rg makeBin $(rg buildPython . -l)
misc/lollypop-portal/default.nix
49: --prefix PATH : "${stdenv.lib.makeBinPath [ easytag kid3 ]}"
applications/video/gnomecast/default.nix
20: gappsWrapperArgs+=(--prefix PATH : ${lib.makeBinPath [ ffmpeg ]})
applications/misc/kitty/default.nix
46: wrapProgram "$out/bin/kitty" --prefix PATH : "$out/bin:${stdenv.lib.makeBinPath [ imagemagick xsel ]}"
applications/virtualization/virt-manager/default.nix
52: gappsWrapperArgs+=(--prefix PATH : "${makeBinPath [ cpio e2fsprogs file findutils gzip ]}")
development/tools/vcstool/default.nix
18: makeWrapperArgs = ["--prefix" "PATH" ":" "${stdenv.lib.makeBinPath [ git bazaar subversion ]}"];
tools/X11/xpra/default.nix
64: --prefix PATH : ${stdenv.lib.makeBinPath [ getopt xorgserver xauth which utillinux pulseaudio ]}
72: # sed -i '4iexport PATH=${stdenv.lib.makeBinPath [ getopt xorgserver xauth which utillinux ]}\${PATH:+:}\$PATH' $out/bin/xpra
tools/X11/xpra/gtk3.nix
58: --prefix PATH : ${stdenv.lib.makeBinPath [ getopt xorgserver xauth which utillinux ]}
67: # sed -i '4iexport PATH=${stdenv.lib.makeBinPath [ getopt xorgserver xauth which utillinux ]}\${PATH:+:}\$PATH' $out/bin/xpra
tools/backup/duplicity/default.nix
24: --prefix PATH : "${stdenv.lib.makeBinPath [ gnupg ncftp rsync ]}"
tools/graphics/pywal/default.nix
15: makeWrapperArgs = [ "--prefix PATH : ${lib.makeBinPath [ imagemagick feh ]}" ];
tools/text/invoice2data/default.nix
12: makeWrapperArgs = ["--prefix" "PATH" ":" "${stdenv.lib.makeBinPath [ imagemagick xpdf tesseract ]}" ];
tools/package-management/nix-review/default.nix
23: wrapProgram $out/bin/nix-review --prefix PATH : ${stdenv.lib.makeBinPath [
tools/misc/youtube-dl/default.nix
38: in [ ''--prefix PATH : "${lib.makeBinPath packagesToBinPath}"'' ];
tools/compression/dtrx/default.nix
9: archivers = lib.makeBinPath ([ gnutar lhasa rpm binutils cpio gzip p7zip cabextract unshield ]
applications/networking/mailreaders/mailpile/default.nix
35: --prefix PATH ":" "${stdenv.lib.makeBinPath [ gnupg1orig openssl ]}" \
applications/version-management/git-and-tools/git-big-picture/default.nix
20: --prefix PATH ":" ${ stdenv.lib.makeBinPath buildInputs }
development/tools/misc/gdbgui/default.nix
23: --prefix PATH : ${stdenv.lib.makeBinPath [ gdb ]}
Success on x86_64-linux (full log) Attempted: nix-review Partial log (click to expand)
|
Success on x86_64-darwin (full log) Attempted: nix-review Partial log (click to expand)
|
Success on aarch64-linux (full log) Attempted: nix-review Partial log (click to expand)
|
Motivation for this change
In case you review @r-ryantm pull requests it is now possible to use the cachnix cache by using the
--checkout
option:Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)