push sheeet
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s

This commit is contained in:
Dark Steveneq
2025-10-09 14:15:47 +02:00
commit 646b892680
49168 changed files with 5897842 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
source 'https://rubygems.org'
gem 'sqlint'

View File

@@ -0,0 +1,17 @@
GEM
remote: https://rubygems.org/
specs:
google-protobuf (3.25.5)
pg_query (4.2.3)
google-protobuf (>= 3.22.3)
sqlint (0.3.0)
pg_query (>= 1)
PLATFORMS
ruby
DEPENDENCIES
sqlint
BUNDLED WITH
2.4.20

View File

@@ -0,0 +1,34 @@
{
google-protobuf = {
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "0fanhdf3vzghma51w1hqpp8s585mwzxgqkwvxj5is4q9j0pgwcs3";
type = "gem";
};
version = "3.25.5";
};
pg_query = {
dependencies = [ "google-protobuf" ];
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "15ynrzqsmmbmxib8ri8n9k6z3l6rwd91j7y1mghm33nfgdf9bj8w";
type = "gem";
};
version = "4.2.3";
};
sqlint = {
dependencies = [ "pg_query" ];
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "06gljzjhbfvxs85699jr1p7y2j8hhi629kfarad7yjqy7ssl541n";
type = "gem";
};
version = "0.3.0";
};
}

View File

@@ -0,0 +1,26 @@
{
lib,
bundlerApp,
bundlerUpdateScript,
}:
bundlerApp {
pname = "sqlint";
gemdir = ./.;
exes = [ "sqlint" ];
passthru.updateScript = bundlerUpdateScript "sqlint";
meta = with lib; {
description = "Simple SQL linter";
homepage = "https://github.com/purcell/sqlint";
license = licenses.mit;
maintainers = with maintainers; [
ariutta
nicknovitski
purcell
];
platforms = platforms.unix;
};
}