5
0
mirror of https://github.com/spantaleev/matrix-docker-ansible-deploy.git synced 2026-07-18 15:49:35 +00:00

add agru (directly, not from nixpkgs)

This commit is contained in:
Jack Wines
2026-02-26 10:40:10 -08:00
parent 5359313246
commit b4006bc7ea
+20 -6
View File
@@ -1,25 +1,39 @@
{ {
inputs = { inputs = {
nixpkgs.url = "github:NixOS/nixpkgs"; nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
flake-utils.url = "github:numtide/flake-utils"; flake-utils.url = "github:numtide/flake-utils";
agru-src = {
url = "github:etkecc/agru";
flake = false;
}; };
outputs = { };
outputs =
{
self, self,
nixpkgs, nixpkgs,
flake-utils, flake-utils,
agru-src,
}: }:
flake-utils.lib.eachDefaultSystem flake-utils.lib.eachDefaultSystem (
( system:
system: let let
pkgs = import nixpkgs { pkgs = import nixpkgs {
inherit system; inherit system;
}; };
agru = pkgs.buildGo125Module {
pname = "agru";
version = "0.1.19";
src = agru-src;
vendorHash = null;
};
in in
with pkgs; { with pkgs;
{
devShells.default = mkShell { devShells.default = mkShell {
buildInputs = [ buildInputs = [
just just
ansible ansible
agru
]; ];
shellHook = '' shellHook = ''
echo "$(ansible --version)" echo "$(ansible --version)"