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 'overcommit'

View File

@@ -0,0 +1,21 @@
GEM
remote: https://rubygems.org/
specs:
childprocess (5.1.0)
logger (~> 1.5)
iniparse (1.5.0)
logger (1.7.0)
overcommit (0.68.0)
childprocess (>= 0.6.3, < 6)
iniparse (~> 1.4)
rexml (>= 3.3.9)
rexml (3.4.1)
PLATFORMS
ruby
DEPENDENCIES
overcommit
BUNDLED WITH
2.6.9

View File

@@ -0,0 +1,58 @@
{
childprocess = {
dependencies = [ "logger" ];
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "1v5nalaarxnfdm6rxb7q6fmc6nx097jd630ax6h9ch7xw95li3cs";
type = "gem";
};
version = "5.1.0";
};
iniparse = {
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "1wb1qy4i2xrrd92dc34pi7q7ibrjpapzk9y465v0n9caiplnb89n";
type = "gem";
};
version = "1.5.0";
};
logger = {
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "00q2zznygpbls8asz5knjvvj2brr3ghmqxgr83xnrdj4rk3xwvhr";
type = "gem";
};
version = "1.7.0";
};
overcommit = {
dependencies = [
"childprocess"
"iniparse"
"rexml"
];
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "1l68phk7kixncc13db5yqgkryf69gc3h63vj7l5f2970i1ix5g5z";
type = "gem";
};
version = "0.68.0";
};
rexml = {
groups = [ "default" ];
platforms = [ ];
source = {
remotes = [ "https://rubygems.org" ];
sha256 = "1jmbf6lf7pcyacpb939xjjpn1f84c3nw83dy3p1lwjx0l2ljfif7";
type = "gem";
};
version = "3.4.1";
};
}

View File

@@ -0,0 +1,42 @@
{
lib,
bundlerApp,
bundlerUpdateScript,
git,
makeWrapper,
overcommit,
testers,
}:
bundlerApp {
pname = "overcommit";
gemdir = ./.;
exes = [ "overcommit" ];
nativeBuildInputs = [ makeWrapper ];
postBuild = ''
wrapProgram $out/bin/overcommit --prefix PATH : ${lib.makeBinPath [ git ]}
'';
passthru = {
tests.version = testers.testVersion {
package = overcommit;
version = (import ./gemset.nix).overcommit.version;
};
updateScript = bundlerUpdateScript "overcommit";
};
meta = with lib; {
description = "Tool to manage and configure Git hooks";
homepage = "https://github.com/sds/overcommit";
changelog = "https://github.com/sds/overcommit/blob/main/CHANGELOG.md";
license = licenses.mit;
mainProgram = "overcommit";
maintainers = with maintainers; [
Br1ght0ne
anthonyroussel
];
platforms = platforms.unix;
};
}