gorm-gentool: init at 0.0.1

This commit is contained in:
Fede Barcelona 2024-07-08 09:20:41 +02:00
parent 1105318a36
commit 3f85fcc220

View File

@ -0,0 +1,29 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "gorm-gentool";
version = "0.0.1";
src = fetchFromGitHub {
owner = "go-gorm";
repo = "gen";
rev = "tools/gentool/v${version}";
hash = "sha256-JOecNYEIL8vbc7znkKbaSrTkGyAva3ZzKzxducDtTx0=";
};
modRoot = "tools/gentool";
proxyVendor = true;
vendorHash = "sha256-8xUJcsZuZ1KpFDM1AMTRggl7A7C/YaXYDzRKNFKE+ww=";
meta = with lib; {
homepage = "https://github.com/go-gorm/gen";
description = "Gen: Friendly & Safer GORM powered by Code Generation";
license = licenses.mit;
mainProgram = "gentool";
maintainers = with maintainers; [tembleking];
};
}