about summary refs log tree commit diff
path: root/pkgs/tools/system/hiera-eyaml/default.nix
blob: 33d97aa7d6b6d6f7d20ff54d5ea908d43ab03687 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:

bundlerEnv {
  inherit ruby;
  pname = "hiera-eyaml";
  gemdir = ./.;

  passthru.updateScript = bundlerUpdateScript "hiera-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 = with maintainers; [ benley nicknovitski ];
    platforms = platforms.unix;
  };
}