about summary refs log tree commit diff
path: root/third_party/agenix/default.nix
blob: 1462050ef1a862fae590c062e72bbac4e2267592 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ pkgs, depot, ... }:

let
  src = depot.third_party.sources.agenix;

  agenix = import src {
    inherit pkgs;
  };
in
{
  inherit src;
  cli = agenix.agenix;

  meta.ci.targets = [ "cli" ];
}