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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
499 B
Nix
Raw Normal View History

2024-09-17 10:23:40 -06:00
{ lib, bundlerEnv, ruby, bundlerUpdateScript }:
bundlerEnv {
inherit ruby;
pname = "hiera-eyaml";
gemdir = ./.;
passthru.updateScript = bundlerUpdateScript "hiera-eyaml";
meta = with lib; {
description = "Per-value asymmetric encryption of sensitive data for Hiera";
homepage = "https://github.com/TomPoulton/hiera-eyaml";
license = licenses.mit;
maintainers = with maintainers; [ benley nicknovitski ];
platforms = platforms.unix;
mainProgram = "eyaml";
};
}