depot/third_party/nixpkgs/pkgs/development/tools/database/sqlc/default.nix
Default email ae2dc6aea6 Project import generated by Copybara.
GitOrigin-RevId: 4c2fcb090b1f3e5b47eaa7bd33913b574a11e0a0
2024-10-11 07:15:48 +02:00

29 lines
606 B
Nix

{ lib, buildGoModule, fetchFromGitHub }:
let
version = "1.27.0";
in
buildGoModule {
pname = "sqlc";
inherit version;
src = fetchFromGitHub {
owner = "sqlc-dev";
repo = "sqlc";
rev = "v${version}";
hash = "sha256-wxQ+YPsDX0Z6B8whlQ/IaT2dRqapPL8kOuFEc6As1rU=";
};
proxyVendor = true;
vendorHash = "sha256-ndOw3uShF5TngpxYNumoK3H3R9v4crfi5V3ZCoSqW90=";
subPackages = [ "cmd/sqlc" ];
meta = {
description = "Generate type-safe code from SQL";
mainProgram = "sqlc";
homepage = "https://sqlc.dev/";
license = lib.licenses.mit;
maintainers = [ ];
};
}