Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3389b4e5caea
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5078eba3aa90
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Oct 13, 2019

  1. argo: 2.2.1 -> 2.4.1 (#70672)

    groodt authored and kalbasit committed Oct 13, 2019
    Copy the full SHA
    5078eba View commit details
Showing with 370 additions and 153 deletions.
  1. +3 −2 pkgs/applications/networking/cluster/argo/default.nix
  2. +367 −151 pkgs/applications/networking/cluster/argo/deps.nix
5 changes: 3 additions & 2 deletions pkgs/applications/networking/cluster/argo/default.nix
Original file line number Diff line number Diff line change
@@ -2,17 +2,18 @@

buildGoPackage rec {
pname = "argo";
version = "2.2.1";
version = "2.4.1";

src = fetchFromGitHub {
owner = "argoproj";
repo = "argo";
rev = "v${version}";
sha256 = "0x3aizwbqkg2712021wcq4chmwjhw2df702wbr6zd2a2cdypwb67";
sha256 = "1f9l9d4r0qfhpr2fn17faczcwmwmdz8f56f27cmmnhxz4r7qcm48";
};

goDeps = ./deps.nix;
goPackagePath = "github.com/argoproj/argo";
subPackages = [ "cmd/argo" ];

meta = with lib; {
description = "Container native workflow engine for Kubernetes";
Loading