mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-09-01 13:14:42 +00:00
generated using https://git.kybe.xyz/2kybe3/nixpkgs-github-redirect continuation of: #548162
44 lines
907 B
Nix
44 lines
907 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule (finalAttrs: {
|
|
pname = "sqlboiler";
|
|
version = "4.19.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "aarondl";
|
|
repo = "sqlboiler";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-I67MRrsFCLVdslMFwFnrx1EvyR4eUsupRsqD0T9ZCQg=";
|
|
};
|
|
|
|
vendorHash = "sha256-ULoyMN54RIFST6P91V3MnRrfiC7+o3LmUFdc0pIqj90=";
|
|
|
|
tags = [
|
|
"mysql"
|
|
"go"
|
|
"golang"
|
|
"postgres"
|
|
"orm"
|
|
"database"
|
|
"postgresql"
|
|
"mssql"
|
|
"sqlite3"
|
|
"sqlboiler"
|
|
];
|
|
|
|
doCheck = false;
|
|
|
|
meta = {
|
|
description = "Generate a Go ORM tailored to your database schema";
|
|
homepage = "https://github.com/aarondl/sqlboiler";
|
|
changelog = "https://github.com/aarondl/sqlboiler/releases/tag/v${finalAttrs.version}";
|
|
license = lib.licenses.bsd3;
|
|
maintainers = with lib.maintainers; [ mrityunjaygr8 ];
|
|
mainProgram = "sqlboiler";
|
|
};
|
|
})
|