diff options
| author | superherointj <5861043+superherointj@users.noreply.github.com> | 2024-10-01 08:24:03 -0300 |
|---|---|---|
| committer | superherointj <5861043+superherointj@users.noreply.github.com> | 2024-10-01 08:35:40 -0300 |
| commit | b1332733d4e5c97f6cab8d0ec32cd1fcbab4fb9a (patch) | |
| tree | 7d1a22d6dc043f13495fb9fdc71ee261613d798d | |
| parent | fluxcd/update-script: add double quotes to prevent globbing and word splitting (diff) | |
| download | nixpkgs-b1332733d4e5c97f6cab8d0ec32cd1fcbab4fb9a.tar.gz | |
fluxcd: 2.3.0 -> 2.4.0
Release: https://github.com/fluxcd/flux2/releases/tag/v2.4.0
| -rw-r--r-- | pkgs/by-name/fl/fluxcd/package.nix | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/pkgs/by-name/fl/fluxcd/package.nix b/pkgs/by-name/fl/fluxcd/package.nix index a1b520e5fe84..3e42a7c7763d 100644 --- a/pkgs/by-name/fl/fluxcd/package.nix +++ b/pkgs/by-name/fl/fluxcd/package.nix @@ -8,9 +8,10 @@ }: let - version = "2.3.0"; - hash = "sha256-ZQs1rWI31qDo/BgjrmiNnEdR2OL8bUHVz+j5VceEp2k="; - manifestsSha256 = "sha256-PdhR+UDquIJWtpSymtT6V7qO5fVJOkFz6RGzAx7xeb4="; + version = "2.4.0"; + hash = "sha256-b4mu/iijfALBm+7OIdKgZs55fR6xWfPgL6OMOgIOi3w="; + vendorHash = "sha256-rVyirt6+D1qedbTvPZjLog16sMAq+zyFUmbjnJIieRg="; + manifestsSha256 = "sha256-85Ykc6B+DP9PVqwGbvqsQCUHpx/IzIP9TgOt3id7P5g="; manifests = fetchzip { url = "https://github.com/fluxcd/flux2/releases/download/v${version}/manifests.tar.gz"; @@ -21,7 +22,7 @@ in buildGoModule rec { pname = "fluxcd"; - inherit version; + inherit vendorHash version; src = fetchFromGitHub { owner = "fluxcd"; @@ -30,8 +31,6 @@ buildGoModule rec { inherit hash; }; - vendorHash = "sha256-0YH3pgFrsnh5jIsZpj/sIgfiOCTtIlPltMS5mdGz1eM="; - postUnpack = '' cp -r ${manifests} source/cmd/flux/manifests |
