kpt: 0.39.2 -> 0.39.3

+5 -5
+5 -5
pkgs/applications/networking/cluster/kpt/default.nix
··· 1 - { buildGoModule, fetchFromGitHub, lib }: 1 + { buildGoModule, fetchFromGitHub, lib, stdenv }: 2 2 3 3 buildGoModule rec { 4 4 pname = "kpt"; 5 - version = "0.39.2"; 5 + version = "0.39.3"; 6 6 7 7 src = fetchFromGitHub { 8 8 owner = "GoogleContainerTools"; 9 9 repo = pname; 10 10 rev = "v${version}"; 11 - sha256 = "sha256-PG4SzycXRguKyaQ7LDnTtxF3EgqcjfjeEWD5rROXBPI="; 11 + hash = "sha256-vidrKfmP0Lw6EYYufLDxh3ROOJ3hPIusDTI/Hr73NYM="; 12 12 }; 13 13 14 - vendorSha256 = "sha256-CoXlUX9hkP8gijA/vg19AS9030w95A2oKGD1wjzO8ak="; 14 + vendorHash = "sha256-CoXlUX9hkP8gijA/vg19AS9030w95A2oKGD1wjzO8ak="; 15 15 16 16 subPackages = [ "." ]; 17 17 ··· 22 22 homepage = "https://googlecontainertools.github.io/kpt/"; 23 23 license = licenses.asl20; 24 24 maintainers = with maintainers; [ mikefaille ]; 25 - platforms = platforms.linux ++ platforms.darwin; 25 + broken = stdenv.isDarwin; 26 26 }; 27 27 }