mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
15 lines
368 B
Nix
15 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;
|
|
};
|
|
}
|