mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
puppet-lint: init at 2.3.6
This commit is contained in:
parent
cfff3eb6c4
commit
43b6d46f4f
5 changed files with 37 additions and 0 deletions
5
pkgs/development/tools/puppet/puppet-lint/Gemfile
Normal file
5
pkgs/development/tools/puppet/puppet-lint/Gemfile
Normal file
|
@ -0,0 +1,5 @@
|
|||
# frozen_string_literal: true
|
||||
|
||||
source "https://rubygems.org"
|
||||
|
||||
gem "puppet-lint"
|
13
pkgs/development/tools/puppet/puppet-lint/Gemfile.lock
Normal file
13
pkgs/development/tools/puppet/puppet-lint/Gemfile.lock
Normal file
|
@ -0,0 +1,13 @@
|
|||
GEM
|
||||
remote: https://rubygems.org/
|
||||
specs:
|
||||
puppet-lint (2.3.6)
|
||||
|
||||
PLATFORMS
|
||||
ruby
|
||||
|
||||
DEPENDENCIES
|
||||
puppet-lint
|
||||
|
||||
BUNDLED WITH
|
||||
1.16.3
|
7
pkgs/development/tools/puppet/puppet-lint/default.nix
Normal file
7
pkgs/development/tools/puppet/puppet-lint/default.nix
Normal file
|
@ -0,0 +1,7 @@
|
|||
{ bundlerApp }:
|
||||
|
||||
bundlerApp {
|
||||
pname = "puppet-lint";
|
||||
gemdir = ./.;
|
||||
exes = [ "puppet-lint" ];
|
||||
}
|
10
pkgs/development/tools/puppet/puppet-lint/gemset.nix
Normal file
10
pkgs/development/tools/puppet/puppet-lint/gemset.nix
Normal file
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
puppet-lint = {
|
||||
source = {
|
||||
remotes = ["https://rubygems.org"];
|
||||
sha256 = "1wyk2l440d96ps3x127r52n51kqpqi2nzb3xlg92qn6aksqhnkis";
|
||||
type = "gem";
|
||||
};
|
||||
version = "2.3.6";
|
||||
};
|
||||
}
|
|
@ -8479,6 +8479,8 @@ with pkgs;
|
|||
|
||||
pup = callPackage ../development/tools/pup { };
|
||||
|
||||
puppet-lint = callPackage ../development/tools/puppet/puppet-lint { };
|
||||
|
||||
pyrseas = callPackage ../development/tools/database/pyrseas { };
|
||||
|
||||
qtcreator = libsForQt5.callPackage ../development/tools/qtcreator { };
|
||||
|
|
Loading…
Reference in a new issue