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: aaae3637a64e
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: c54bb4e98ed1
Choose a head ref
  • 1 commit
  • 2 files changed
  • 1 contributor

Commits on Nov 9, 2020

  1. argocd: 1.4.2 -> 1.7.8

    glittershark authored and alyssais committed Nov 9, 2020
    Copy the full SHA
    c54bb4e View commit details
Showing with 4 additions and 3,064 deletions.
  1. +4 −6 pkgs/applications/networking/cluster/argocd/default.nix
  2. +0 −3,058 pkgs/applications/networking/cluster/argocd/use-go-module.patch
10 changes: 4 additions & 6 deletions pkgs/applications/networking/cluster/argocd/default.nix
Original file line number Diff line number Diff line change
@@ -2,24 +2,22 @@

buildGoModule rec {
pname = "argocd";
version = "1.4.2";
commit = "48cced9d925b5bc94f6aa9fa4a8a19b2a59e128a";
version = "1.7.8";
commit = "ef5010c3a0b5e027fd642732d03c5b0391b1e574";

src = fetchFromGitHub {
owner = "argoproj";
repo = "argo-cd";
rev = "v${version}";
sha256 = "01vsyrks1k5yfvrarv8ia0isr7snilr21b7lfiy860si82r2r8hj";
sha256 = "1pwk6mzmlsx43c75wl5lglpxgc2jkgzra4443hwp6n0wfgzajfp4";
};

vendorSha256 = "0r2nh7v00m6zbdnhsgjn01q9pkiz41ckkqgfnpqmkxaqmjz31iyj";
vendorSha256 = "0c5gykijwjrq3cx9qg9hm5j7axccngc1kp5qj3429a2ilw80l8pl";

doCheck = false;

nativeBuildInputs = [ packr ];

patches = [ ./use-go-module.patch ];

buildFlagsArray = ''
-ldflags=
-X github.com/argoproj/argo-cd/common.version=${version}
Loading