about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/system/hiera-eyaml/default.nix
blob: be6fb1c7462abe1a94313508d3088bca6e978dd7 (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;
  };
}