-
-
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
jq: build from Git tag (instead of dist tarball) #71375
Conversation
This file contains what the Python transition will likely look like, the meat being: let
# from ./docs/Pipfile{,.lock}
docsPythonPackages = ps: [
ps.jinja2
ps.lxml
ps.markdown
ps.pyyaml_3 or ps.pyyaml
];
in (I'm not sure how to do this like with Ruby and respect the Pipenv.lock.) |
That looks simple enough. Let's not mess with pipenv. I remember having headaches from the last time I used it. |
|
@risicle Could you build with |
On darwin I get all seven tests fail with
|
Thank you for your contributions. This has been automatically marked as stale because it has had no activity for 180 days. If this is still important to you, we ask that you leave a comment below. Your comment can be as simple as "still important to me". This lets people see that at least one person still cares about this. Someone will have to do this at most twice a year if there is no other activity. Here are suggestions that might help resolve this more quickly:
|
@bb010g please resolve the merge conflict. |
Rebased. Valgrind checks are no longer enabled by default, which should fix macOS builds. |
Result of 4 packages marked as broken and skipped:
2 packages blacklisted:
4 packages failed to build:
104 packages built:
|
}: | ||
|
||
assert enableValgrindChecks -> valgrind != null; | ||
assert enableValgrindChecks -> which != null; |
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.
Maybe just have less
/valgrind
/which
in the arguments without ? null
and drop this assertion? They won't be used anyway except conditionally (and evaluation is lazy anyway).
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.
Isn't this pattern meant for callPackage
on the file's expression from scopes that don't necessarily have optional package arguments present, though? Destructuring attrset arguments eagerly check for their named parameters. Admittedly, it's a niche case, but without an overall style decision in Nixpkgs I'd prefer to keep with the usual style (that has minor technical merits).
The assertions are there for clearer error messages, and are a pattern (to some extent) throughout Nixpkgs too AFAIK.
Thanks for reminding me to take a look at less
, not sure actually why that's there at the moment.
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.
Think I included less
for $src/tests/mantest
, but it runs fine without it. Removed.
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'd prefer to keep with the usual style
Usually style is to add an enable flag and use lib.optionals.
As per NixOS#31236, building from source (here, Git) should be encouraged over building from release or distribution tarballs. This makes it easier to patch the derivation to use alternative VCS branches, among other benefits. This involves vendoring the Bundler specification for the docs's Rake invocation for now, but next release will mean a switch to Python (patching approximately the same files).
It doesn't look like any of these failures are due to jq. |
meta = { | ||
description = ''A lightweight and flexible command-line JSON processor''; | ||
downloadPage = "https://stedolan.github.io/jq/download/"; | ||
homepage = "https://stedolan.github.io/jq/"; | ||
license = lib.licenses.mit; | ||
maintainers = with lib.maintainers; [ raskin globin bb010g ]; | ||
platforms = with lib.platforms; linux ++ darwin; |
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.
meta = { | |
description = ''A lightweight and flexible command-line JSON processor''; | |
downloadPage = "https://stedolan.github.io/jq/download/"; | |
homepage = "https://stedolan.github.io/jq/"; | |
license = lib.licenses.mit; | |
maintainers = with lib.maintainers; [ raskin globin bb010g ]; | |
platforms = with lib.platforms; linux ++ darwin; | |
meta = with lib; { | |
description = ''A lightweight and flexible command-line JSON processor''; | |
downloadPage = "https://stedolan.github.io/jq/download/"; | |
homepage = "https://stedolan.github.io/jq/"; | |
license = licenses.mit; | |
maintainers = with maintainers; [ raskin globin bb010g ]; | |
platforms = platforms.unix; |
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 don't think that last line would work.
assert enableValgrindChecks -> valgrind != null; | ||
assert enableValgrindChecks -> which != null; |
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.
assert enableValgrindChecks -> valgrind != null; | |
assert enableValgrindChecks -> which != null; |
This is not required and breaks overriding in certain cases.
, bundlerApp ? null | ||
# features | ||
# (enabling Valgrind checks for testing severly increases build time) | ||
, enableValgrindChecks ? false | ||
, valgrind ? null, which ? null |
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.
, bundlerApp ? null | |
# features | |
# (enabling Valgrind checks for testing severly increases build time) | |
, enableValgrindChecks ? false | |
, valgrind ? null, which ? null | |
, bundlerApp | |
# features | |
# (enabling Valgrind checks for testing severly increases build time) | |
, enableValgrindChecks ? false | |
, valgrind, which |
I marked this as stale due to inactivity. → More info |
Leveraging the I think this can be closed |
This involves vendoring the Bundler specification for the docs's Rake invocation for now, but next release will mean a switch to Python (patching ~the same files). (I've already done this on Python for docs building, and it's kind of easier. Less vendoring for sure.)
We also now check with Valgrind by default, as per upstream. This takes longer. (We can turn this off by default if necessary to restore old installCheck times.)
Motivation for this change
I wanted to try out an unstable version of jq, and needed to make most of these changes anyways.
As per #31236, building from source (here, Git) should be encouraged over building from release or distribution tarballs. This makes it easier to patch the derivation to use alternative VCS branches, among other benefits.
Valgrind is on by default in the Makefile, but we haven't ran the tests with it because they automatically turned it off when dependency discovery failed.
Things done
Tested using sandboxing (nix.useSandbox on NixOS, or option
sandbox
innix.conf
on non-NixOS)Built on platform(s)
Tested via one or more NixOS test(s) if existing and applicable for the change (look inside nixos/tests)
Tested compilation of all pkgs that depend on this change using
nix-shell -p nix-review --run "nix-review wip"
Tested execution of all binary files (usually in
./result/bin/
)Determined the impact on package closure size (by running
nix path-info -S
before and after)(Building with
{ enableValgrindChecks = false; }
does not change the closure size.)Ensured that relevant documentation is up to date
Fits CONTRIBUTING.md.
Notify maintainers
cc @7c6f434c @globin
This change is