Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

44 lines
890 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "sqlboiler";
version = "4.19.5";
src = fetchFromGitHub {
owner = "volatiletech";
repo = "sqlboiler";
tag = "v${version}";
hash = "sha256-GbQCHScE04nM8QzQzPSpD3efmfYEQRbioNfVcdmfPlc=";
};
vendorHash = "sha256-LMHFDOKZQa0DJLHehRBzGGlb7apppnMDbjnJ4spuZtA=";
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/volatiletech/sqlboiler";
changelog = "https://github.com/volatiletech/sqlboiler/releases/tag/v${version}";
license = lib.licenses.bsd3;
maintainers = with lib.maintainers; [ mrityunjaygr8 ];
mainProgram = "sqlboiler";
};
}