-
-
Notifications
You must be signed in to change notification settings - Fork 59
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
Pass tags to go build? #109
Comments
Have you tried the |
Confirmed, default = pkgs.buildGoApplication {
checkPhase = false;
pname = "demo";
version = "0.0.1";
src = ./.;
modules = ./gomod2nix.toml;
tags = [
"sqlite_math_functions"
];
}; |
Hi, thanks. Any reason it isn't in the documentation? |
Unfortunately I don't know, I'm not a maintainer. My guess is it's an honest oversight and that you could probably submit a PR to fix it if you'd like. |
I know this is a year old issue, but I had the problem. Small PR to add the documentation you mentioned @peterldowns to help the next guy. |
I've searched the previous issues for "build tags" and couldn't find anything.
I have a project with go-sqlite3, and I require the 'sqlite_math_functions' tag.
I usually add
--tags sqlite_math_functions
togo build
, how do I do sousing buildGoApplication in my nix flake?
The text was updated successfully, but these errors were encountered: