hiera-eyaml: init at 2.1.0
This commit is contained in:
parent
a689df205a
commit
68689f4d8e
3
pkgs/tools/system/hiera-eyaml/Gemfile
Normal file
3
pkgs/tools/system/hiera-eyaml/Gemfile
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
source 'https://rubygems.org'
|
||||||
|
|
||||||
|
gem 'hiera-eyaml', '2.1.0'
|
17
pkgs/tools/system/hiera-eyaml/Gemfile.lock
Normal file
17
pkgs/tools/system/hiera-eyaml/Gemfile.lock
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
GEM
|
||||||
|
remote: https://rubygems.org/
|
||||||
|
specs:
|
||||||
|
hiera-eyaml (2.1.0)
|
||||||
|
highline (~> 1.6.19)
|
||||||
|
trollop (~> 2.0)
|
||||||
|
highline (1.6.21)
|
||||||
|
trollop (2.1.2)
|
||||||
|
|
||||||
|
PLATFORMS
|
||||||
|
ruby
|
||||||
|
|
||||||
|
DEPENDENCIES
|
||||||
|
hiera-eyaml (= 2.1.0)
|
||||||
|
|
||||||
|
BUNDLED WITH
|
||||||
|
1.11.2
|
28
pkgs/tools/system/hiera-eyaml/default.nix
Normal file
28
pkgs/tools/system/hiera-eyaml/default.nix
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
{ lib, bundlerEnv, stdenv }:
|
||||||
|
|
||||||
|
let
|
||||||
|
name = "hiera-eyaml-${env.gems.hiera-eyaml.version}";
|
||||||
|
|
||||||
|
env = bundlerEnv {
|
||||||
|
inherit name;
|
||||||
|
gemfile = ./Gemfile;
|
||||||
|
lockfile = ./Gemfile.lock;
|
||||||
|
gemset = ./gemset.nix;
|
||||||
|
};
|
||||||
|
|
||||||
|
in stdenv.mkDerivation {
|
||||||
|
inherit name;
|
||||||
|
|
||||||
|
buildCommand = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
ln -s ${env}/bin/eyaml $out/bin/eyaml
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Per-value asymmetric encryption of sensitive data for Hiera";
|
||||||
|
homepage = https://github.com/TomPoulton/hiera-eyaml;
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.benley ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
26
pkgs/tools/system/hiera-eyaml/gemset.nix
Normal file
26
pkgs/tools/system/hiera-eyaml/gemset.nix
Normal file
@ -0,0 +1,26 @@
|
|||||||
|
{
|
||||||
|
hiera-eyaml = {
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "1h25pfv89macjf3sjdrx7slhlq1af4zybai42ci3gj02b6hli4a6";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "2.1.0";
|
||||||
|
};
|
||||||
|
highline = {
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "06bml1fjsnrhd956wqq5k3w8cyd09rv1vixdpa3zzkl6xs72jdn1";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "1.6.21";
|
||||||
|
};
|
||||||
|
trollop = {
|
||||||
|
source = {
|
||||||
|
remotes = ["https://rubygems.org"];
|
||||||
|
sha256 = "0415y63df86sqj43c0l82and65ia5h64if7n0znkbrmi6y0jwhl8";
|
||||||
|
type = "gem";
|
||||||
|
};
|
||||||
|
version = "2.1.2";
|
||||||
|
};
|
||||||
|
}
|
@ -1933,6 +1933,8 @@ in
|
|||||||
|
|
||||||
hevea = callPackage ../tools/typesetting/hevea { };
|
hevea = callPackage ../tools/typesetting/hevea { };
|
||||||
|
|
||||||
|
hiera-eyaml = callPackage ../tools/system/hiera-eyaml { };
|
||||||
|
|
||||||
hfsprogs = callPackage ../tools/filesystems/hfsprogs { };
|
hfsprogs = callPackage ../tools/filesystems/hfsprogs { };
|
||||||
|
|
||||||
highlight = callPackage ../tools/text/highlight {
|
highlight = callPackage ../tools/text/highlight {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user