Add on top of default.nix: with import <nixpkgs>{};
or simply run as nix-build '<nixpkgs>'
(i. e. for nix-build complaining) or rather nix-build -E 'with import <nixpkgs> {}; callPackage ./default.nix {}'
(or even import)
Last active
January 20, 2024 21:02
-
-
Save 573/b46c4b6e4fe624fbfffc6fbe18be61ec to your computer and use it in GitHub Desktop.
nix complains "error: cannot auto-call a function that has an argument without a default value ('stdenv')"?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Was very useful. Thanks!