2019-07-22 13:02:47 +01:00
|
|
|
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
|
2016-06-15 22:59:01 +01:00
|
|
|
|
2016-10-02 23:40:19 +01:00
|
|
|
bundlerEnv {
|
|
|
|
inherit ruby;
|
2016-10-14 16:56:42 +01:00
|
|
|
pname = "hiera-eyaml";
|
2016-10-02 23:40:19 +01:00
|
|
|
gemdir = ./.;
|
2016-06-15 22:59:01 +01:00
|
|
|
|
2019-07-22 13:02:47 +01:00
|
|
|
passthru.updateScript = bundlerUpdateScript "hiera-eyaml";
|
|
|
|
|
2016-06-15 22:59:01 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "Per-value asymmetric encryption of sensitive data for Hiera";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/TomPoulton/hiera-eyaml";
|
2016-06-15 22:59:01 +01:00
|
|
|
license = licenses.mit;
|
2019-07-22 13:02:47 +01:00
|
|
|
maintainers = with maintainers; [ benley nicknovitski ];
|
2016-06-15 22:59:01 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|