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

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

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