mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 21:03:15 +00:00
0d059066e7
Diff: https://github.com/volatiletech/sqlboiler/compare/refs/tags/v4.14.2...v4.15.0 Changelog: https://github.com/volatiletech/sqlboiler/releases/tag/v4.15.0
43 lines
897 B
Nix
43 lines
897 B
Nix
{ lib
|
|
, buildGoModule
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "sqlboiler";
|
|
version = "4.15.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "volatiletech";
|
|
repo = "sqlboiler";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-MT1tjVCDaFB9HfjlGGnf6jTiPdKcrDamgp2nTpIarqY=";
|
|
};
|
|
|
|
vendorHash = "sha256-tZ1RQGmeDv4rtdF1WTRQV1K4Xy1AgIatLPPexnHJnkA=";
|
|
|
|
tags = [
|
|
"mysql"
|
|
"go"
|
|
"golang"
|
|
"postgres"
|
|
"orm"
|
|
"database"
|
|
"postgresql"
|
|
"mssql"
|
|
"sqlite3"
|
|
"sqlboiler"
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = with lib; {
|
|
description = "Generate a Go ORM tailored to your database schema";
|
|
homepage = "https://github.com/volatiletech/sqlboiler";
|
|
changelog = "https://github.com/volatiletech/sqlboiler/releases/tag/v${version}";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ mrityunjaygr8 ];
|
|
mainProgram = "sqlboiler";
|
|
};
|
|
}
|