pkgs/sqlc-gen-from-template: init at unstable-2025-01-30

This commit is contained in:
Gabriel Arazas 2025-01-31 13:02:16 +08:00
parent 5e4b17d940
commit 4a2470d8d1
No known key found for this signature in database
GPG Key ID: 62104B43D00AA360
2 changed files with 23 additions and 0 deletions

View File

@ -49,6 +49,7 @@ in lib.makeScope pkgs.newScope (self: {
#rotp-fusion = callPackage ./rotp-fusion { };
#purrdata = callPackage ./purr-data { };
speki = callPackage ./speki { };
sqlc-gen-from-template = callPackage ./sqlc-gen-from-template { };
tic-80 = callPackage ./tic-80 { };
smile = callPackage ./smile { };
sessiond = callPackage ./sessiond { };

View File

@ -0,0 +1,22 @@
{ lib, fetchFromGitHub, buildGoModule }:
buildGoModule rec {
pname = "sqlc-gen-from-template";
version = "unstable-2025-01-30";
src = fetchFromGitHub {
owner = "fdietze";
repo = "sqlc-gen-from-template";
rev = "1bd97b6945ef262a8ad6f4f8ec034c91c2a4365c";
hash = "sha256-v0j5cV32ebfrqASZi/lva5nAxaMS1hgZlsnTIJSi6Do=";
};
vendorHash = "sha256-NsE42mhU5ekNJUu9zFNK/FCJ8S1wB9teHqqSHLKGVyw=";
meta = with lib; {
homepage = "https://github.com/fdietze/sqlc-gen-from-template";
description = "sqlc plugin for generating from a template";
license = [ licenses.mit ];
mainProgram = pname;
};
}