Skip to content

Instantly share code, notes, and snippets.

@betawaffle
Created May 28, 2020 17:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save betawaffle/003dfe72ad0a987bfda16f4558aaaac5 to your computer and use it in GitHub Desktop.
Save betawaffle/003dfe72ad0a987bfda16f4558aaaac5 to your computer and use it in GitHub Desktop.
{ buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "sqlc";
version = "1.3.0";
src = fetchFromGitHub {
owner = "kyleconroy";
repo = pname;
rev = "v${version}";
sha256 = "<fake temporary one>";
};
modSha256 = null;
subPackages = [ "cmd/sqlc" ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment