nixpkgs/pkgs/tools/system/hiera-eyaml/default.nix

18 lines
472 B
Nix
Raw Normal View History

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