about summary refs log tree commit diff
path: root/ops/modules
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-04-18T23·02+0200
committerclbot <clbot@tvl.fyi>2023-04-19T09·11+0000
commit2363a194cdaa16131ecdb43a6d469f8ef068d556 (patch)
treefb762a7bb6159c08fa6bbf05ab9628e17d121d86 /ops/modules
parente056a03614cbac87273e6de02b412c6245a902be (diff)
fix(ops/modules/open_eid): use libdigidocpp.bin r/6099
nixpkgs commit 134036f642a7f3ba9efeab509727c0989458b02b moved the
digidoc-tool binary to the `bin` output, so this wasn't actually
providing the digidoc-tool binary anymore.

Change-Id: Id5f7cc69d55b7cc058a6361512cc74de0e7bc1b2
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8487
Reviewed-by: tazjin <tazjin@tvl.su>
Tested-by: BuildkiteCI
Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'ops/modules')
-rw-r--r--ops/modules/open_eid.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/ops/modules/open_eid.nix b/ops/modules/open_eid.nix
index 4bc35e298c..a87acae47c 100644
--- a/ops/modules/open_eid.nix
+++ b/ops/modules/open_eid.nix
@@ -30,7 +30,7 @@ in
   '';
 
   environment.systemPackages = with pkgs; [
-    libdigidocpp # provides digidoc-tool(1)
+    libdigidocpp.bin # provides digidoc-tool(1)
     qdigidoc
     setup-browser-eid
   ];