1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-23 06:01:15 +00:00
nixpkgs/pkgs/tools/system/hiera-eyaml/default.nix

16 lines
368 B
Nix
Raw Normal View History

2016-10-02 23:40:19 +01:00
{ lib, bundlerEnv, ruby }:
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
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;
};
}