sqlboiler-crbd: init at unstable-2022-06-12

This commit is contained in:
Daniel Gollings
2023-07-25 17:43:29 +02:00
parent 9fadaa2576
commit 887828e3ca
2 changed files with 26 additions and 0 deletions
@@ -0,0 +1,24 @@
{ buildGoModule, fetchFromGitHub, lib }:
buildGoModule rec {
pname = "sqlboiler-crbd";
version = "unstable-2022-06-12";
src = fetchFromGitHub {
owner = "glerchundi";
repo = "sqlboiler-crdb";
rev = "7b35c4d19c05fdc53d1efdcc074f20ee6b56f340";
hash = "sha256-RlppCRYP7TlM1z1PiXtEVifNVxQHwLuoBXxgYIpUirE=";
};
vendorHash = "sha256-N16GH8ZDyeWWBsaaG4RkJwzAbuQ7E8YjZAgVsfeECo4";
doCheck = false; # requires a running testdb
meta = with lib; {
description = "CockroachDB generator for usage with SQLBoiler";
homepage = "https://github.com/glerchundi/sqlboiler-crdb/";
maintainers = with maintainers; [ dgollings ];
platforms = platforms.unix;
};
}
+2
View File
@@ -19548,6 +19548,8 @@ with pkgs;
spruce = callPackage ../development/tools/misc/spruce { };
sqlboiler-crdb = callPackage ../development/tools/database/sqlboiler-crdb { };
sqlc = callPackage ../development/tools/database/sqlc { };
sqlcheck = callPackage ../development/tools/database/sqlcheck { };