Skip to content

Commit

Permalink
ansible-mgit: expose v2_15 and v2_16
Browse files Browse the repository at this point in the history
  • Loading branch information
mkg20001 committed Dec 19, 2024
1 parent ab732de commit 1cd1a11
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/ansible-mgit/default.nix
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
{ callPackage, ansible }:
{ callPackage, ansible, ansible_2_16, ansible_2_15 }:

(callPackage ./package.nix {}) // {
mkCustom = { extraAnsiblePy, ansible ? ansible }: callPackage ./package.nix { inherit extraAnsiblePy ansible; };
v2_16 = callPackage ./package.nix { ansible = ansible_2_16; };
v2_15 = callPackage ./package.nix { ansible = ansible_2_15; };
}

0 comments on commit 1cd1a11

Please sign in to comment.