Merge pull request #195269 from anthonyroussel/overcommit_0_59_1

Changed files
+30 -14
pkgs
development
+7 -5
pkgs/development/tools/overcommit/Gemfile.lock
···
GEM
remote: https://rubygems.org/
specs:
-
childprocess (3.0.0)
-
iniparse (1.4.4)
-
overcommit (0.51.0)
-
childprocess (>= 0.6.3, < 4)
+
childprocess (4.1.0)
+
iniparse (1.5.0)
+
overcommit (0.59.1)
+
childprocess (>= 0.6.3, < 5)
iniparse (~> 1.4)
+
rexml (~> 3.2)
+
rexml (3.2.5)
PLATFORMS
ruby
···
overcommit
BUNDLED WITH
-
2.1.4
+
2.3.22
+6 -2
pkgs/development/tools/overcommit/default.nix
···
-
{ lib, bundlerApp }:
+
{ lib, bundlerApp, bundlerUpdateScript }:
bundlerApp {
pname = "overcommit";
gemdir = ./.;
exes = [ "overcommit" ];
+
passthru = {
+
updateScript = bundlerUpdateScript "overcommit";
+
};
+
meta = with lib; {
description = "Tool to manage and configure Git hooks";
homepage = "https://github.com/sds/overcommit";
license = licenses.mit;
-
maintainers = with maintainers; [ Br1ght0ne ];
+
maintainers = with maintainers; [ Br1ght0ne anthonyroussel ];
platforms = platforms.unix;
};
}
+17 -7
pkgs/development/tools/overcommit/gemset.nix
···
platforms = [];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1ic028k8xgm2dds9mqnvwwx3ibaz32j8455zxr9f4bcnviyahya5";
+
sha256 = "1lvcp8bsd35g57f7wz4jigcw2sryzzwrpcgjwwf3chmjrjcww5in";
type = "gem";
};
-
version = "3.0.0";
+
version = "4.1.0";
};
iniparse = {
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "1xbik6838gfh5yq9ahh1m7dzszxlk0g7x5lvhb8amk60mafkrgws";
+
sha256 = "1wb1qy4i2xrrd92dc34pi7q7ibrjpapzk9y465v0n9caiplnb89n";
type = "gem";
};
-
version = "1.4.4";
+
version = "1.5.0";
};
overcommit = {
-
dependencies = ["childprocess" "iniparse"];
+
dependencies = ["childprocess" "iniparse" "rexml"];
groups = ["default"];
platforms = [];
source = {
remotes = ["https://rubygems.org"];
-
sha256 = "0fjrrm9dy9mry5ss96sizn6xcphia5l54ydz9c31phipm61nwmfk";
+
sha256 = "0dbz2y98r351r218m9d871ris1zfb6bcwr1gdhb39g2r9pail79n";
type = "gem";
};
-
version = "0.51.0";
+
version = "0.59.1";
+
};
+
rexml = {
+
groups = ["default"];
+
platforms = [];
+
source = {
+
remotes = ["https://rubygems.org"];
+
sha256 = "08ximcyfjy94pm1rhcx04ny1vx2sk0x4y185gzn86yfsbzwkng53";
+
type = "gem";
+
};
+
version = "3.2.5";
};
}