We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb590f0 commit cff3240Copy full SHA for cff3240
1 file changed
flake.nix
@@ -20,7 +20,7 @@
20
inherit version;
21
src = pkgs.lib.cleanSource ./.;
22
subPackages = [ "cmd/sqlc-gen-queries" ];
23
- vendorHash = pkgs.lib.fakeHash; # replace with real hash after running `nix build`
+ vendorHash = "sha256-cC+7vE2X1MM/vqFs4P7fpHN6UyLsesWpv1UwhJ4rYrE=";
24
meta = with pkgs.lib; {
25
description = "SQLC Queries Generator";
26
license = licenses.mit;
@@ -30,10 +30,8 @@
30
31
devShells.default = pkgs.mkShell {
32
name = "sqlc-gen-queries";
33
- packages = with pkgs; [
34
- go
35
- golangci-lint
36
- gopls
+ packages = [
+ pkgs.go
37
];
38
};
39
}
0 commit comments