mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 13:57:10 +03:00
overcommit: init at 0.51.0
This commit is contained in:
parent
1b5df99e7a
commit
daa1bad8ec
2
pkgs/development/tools/overcommit/Gemfile
Normal file
2
pkgs/development/tools/overcommit/Gemfile
Normal file
@ -0,0 +1,2 @@
|
|||||||
|
source 'https://rubygems.org'
|
||||||
|
gem 'overcommit'
|
17
pkgs/development/tools/overcommit/Gemfile.lock
Normal file
17
pkgs/development/tools/overcommit/Gemfile.lock
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
childprocess (3.0.0)
|
||||||
|
iniparse (1.4.4)
|
||||||
|
overcommit (0.51.0)
|
||||||
|
childprocess (>= 0.6.3, < 4)
|
||||||
|
iniparse (~> 1.4)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
overcommit
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
1.17.3
|
15
pkgs/development/tools/overcommit/default.nix
Normal file
15
pkgs/development/tools/overcommit/default.nix
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
{ lib, bundlerApp }:
|
||||||
|
|
||||||
|
bundlerApp {
|
||||||
|
pname = "overcommit";
|
||||||
|
gemdir = ./.;
|
||||||
|
exes = [ "overcommit" ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Tool to manage and configure Git hooks";
|
||||||
|
homepage = https://github.com/sds/overcommit;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = with maintainers; [ filalex77 ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
33
pkgs/development/tools/overcommit/gemset.nix
Normal file
33
pkgs/development/tools/overcommit/gemset.nix
Normal file
@ -0,0 +1,33 @@
|
|||||||
|
{
|
||||||
|
childprocess = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1ic028k8xgm2dds9mqnvwwx3ibaz32j8455zxr9f4bcnviyahya5";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "3.0.0";
|
||||||
|
};
|
||||||
|
iniparse = {
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1xbik6838gfh5yq9ahh1m7dzszxlk0g7x5lvhb8amk60mafkrgws";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "1.4.4";
|
||||||
|
};
|
||||||
|
overcommit = {
|
||||||
|
dependencies = ["childprocess" "iniparse"];
|
||||||
|
groups = ["default"];
|
||||||
|
platforms = [];
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0fjrrm9dy9mry5ss96sizn6xcphia5l54ydz9c31phipm61nwmfk";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "0.51.0";
|
||||||
|
};
|
||||||
|
}
|
@ -5459,6 +5459,8 @@ in
|
|||||||
|
|
||||||
otpw = callPackage ../os-specific/linux/otpw { };
|
otpw = callPackage ../os-specific/linux/otpw { };
|
||||||
|
|
||||||
|
overcommit = callPackage ../development/tools/overcommit { };
|
||||||
|
|
||||||
overmind = callPackage ../applications/misc/overmind { };
|
overmind = callPackage ../applications/misc/overmind { };
|
||||||
|
|
||||||
owncloud-client = libsForQt5.callPackage ../applications/networking/owncloud-client { };
|
owncloud-client = libsForQt5.callPackage ../applications/networking/owncloud-client { };
|
||||||
|
Loading…
Reference in New Issue
Block a user