nixpkgs/pkgs/tools/system/hiera-eyaml/default.nix
2016-10-14 16:56:42 +01:00

16 lines
368 B
Nix

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