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

18 lines
472 B
Nix
Raw Normal View History

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