summary refs log tree commit diff
path: root/pkgs/tools/system/hiera-eyaml/default.nix
diff options
context:
space:
mode:
authorNick Novitski <github@nicknovitski.com>2019-07-22 05:02:47 -0700
committerzimbatm <zimbatm@zimbatm.com>2019-07-22 12:02:47 +0000
commit7136e0d0a6f61734994c566e2cc72fd75733b873 (patch)
treefcaeaea68f596a81fb885790ce87c3aac4bd52ba /pkgs/tools/system/hiera-eyaml/default.nix
parentb24841dd2260516bfde0b9029619a0f9ef87e97c (diff)
downloadnixpkgs-7136e0d0a6f61734994c566e2cc72fd75733b873.tar
nixpkgs-7136e0d0a6f61734994c566e2cc72fd75733b873.tar.gz
nixpkgs-7136e0d0a6f61734994c566e2cc72fd75733b873.tar.bz2
nixpkgs-7136e0d0a6f61734994c566e2cc72fd75733b873.tar.lz
nixpkgs-7136e0d0a6f61734994c566e2cc72fd75733b873.tar.xz
nixpkgs-7136e0d0a6f61734994c566e2cc72fd75733b873.tar.zst
nixpkgs-7136e0d0a6f61734994c566e2cc72fd75733b873.zip
bundlerUpdateScript: init and use (#64822)
Diffstat (limited to 'pkgs/tools/system/hiera-eyaml/default.nix')
-rw-r--r--pkgs/tools/system/hiera-eyaml/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/system/hiera-eyaml/default.nix b/pkgs/tools/system/hiera-eyaml/default.nix
index e0ff7d5ca8b..33d97aa7d6b 100644
--- a/pkgs/tools/system/hiera-eyaml/default.nix
+++ b/pkgs/tools/system/hiera-eyaml/default.nix
@@ -1,15 +1,17 @@
-{ lib, bundlerEnv, ruby }:
+{ 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 = [ maintainers.benley ];
+    maintainers = with maintainers; [ benley nicknovitski ];
     platforms = platforms.unix;
   };
 }