hiera-eyaml: init at 2.1.0

This commit is contained in:
Benjamin Staffin 2016-06-15 17:59:01 -04:00
parent a689df205a
commit 68689f4d8e
5 changed files with 76 additions and 0 deletions

View file

@ -0,0 +1,3 @@
source 'https://rubygems.org'
gem 'hiera-eyaml', '2.1.0'

View 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

View 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;
};
}

View 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";
};
}

View file

@ -1933,6 +1933,8 @@ in
hevea = callPackage ../tools/typesetting/hevea { };
hiera-eyaml = callPackage ../tools/system/hiera-eyaml { };
hfsprogs = callPackage ../tools/filesystems/hfsprogs { };
highlight = callPackage ../tools/text/highlight {