2cf6acc160
It costs me money and time to use uncacheable builtin fetchers. Change-Id: Ie38923667cc6ac54ee85701088c9a5245ccf1c25 Reviewed-on: https://cl.tvl.fyi/c/depot/+/5549 Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su> Reviewed-by: tazjin <tazjin@tvl.su>
17 lines
314 B
Nix
17 lines
314 B
Nix
{ pkgs, ... }:
|
|
|
|
let
|
|
src = pkgs.fetchFromGitHub {
|
|
owner = "ryantm";
|
|
repo = "agenix";
|
|
rev = "52ea2f8c3231cc2b5302fa28c63588aacb77ea29";
|
|
sha256 = "1sqgbriwmvxcmqp0zbk7873psk9g60a53fgrr9p0jafki5zzgvdx";
|
|
};
|
|
agenix = import src {
|
|
inherit pkgs;
|
|
};
|
|
in
|
|
{
|
|
inherit src;
|
|
cli = agenix.agenix;
|
|
}
|