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

16 lines
368 B
Nix
Raw Normal View History

2016-10-03 00:40:19 +02:00
{ lib, bundlerEnv, ruby }:
2016-06-15 23:59:01 +02:00
2016-10-03 00:40:19 +02:00
bundlerEnv {
inherit ruby;
2016-10-14 17:56:42 +02:00
pname = "hiera-eyaml";
2016-10-03 00:40:19 +02:00
gemdir = ./.;
2016-06-15 23:59:01 +02:00
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;
};
}