Merge pull request #198261 from DGollings/sqlboiler-crdb

sqlboiler-crbd: init at unstable-2022-06-12
This commit is contained in:
Doron Behar 2023-07-26 10:01:35 +00:00 committed by GitHub
commit debb8d7b80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 26 additions and 0 deletions

View File

@ -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;
};
}

View File

@ -19940,6 +19940,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 { };