gitkraken: 11.0.0 -> 11.1.0 (#404878)

authored by Peder Bergebakken Sundt and committed by GitHub 769908c4 59dfffae

+5 -5
+4 -4
pkgs/by-name/gi/gitkraken/package.nix
··· 56 57 let 58 pname = "gitkraken"; 59 - version = "11.0.0"; 60 61 throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}"; 62 63 srcs = { 64 x86_64-linux = fetchzip { 65 url = "https://release.axocdn.com/linux/GitKraken-v${version}.tar.gz"; 66 - hash = "sha256-rUOBCxquTw5wh5cK0AEGmIMq808tZQe5E90V7lGRuNY="; 67 }; 68 69 x86_64-darwin = fetchzip { 70 url = "https://release.axocdn.com/darwin/GitKraken-v${version}.zip"; 71 - hash = "sha256-L2OLlHY8iix7HcI5TowZapqtrsvB/KWigdndQWIIIFU="; 72 }; 73 74 aarch64-darwin = fetchzip { 75 url = "https://release.axocdn.com/darwin-arm64/GitKraken-v${version}.zip"; 76 - hash = "sha256-Rk6hSQ12CQl+vDYl17p0fQ74RpfOYhjMqrKZJ0/d1dw="; 77 }; 78 }; 79
··· 56 57 let 58 pname = "gitkraken"; 59 + version = "11.1.0"; 60 61 throwSystem = throw "Unsupported system: ${stdenv.hostPlatform.system}"; 62 63 srcs = { 64 x86_64-linux = fetchzip { 65 url = "https://release.axocdn.com/linux/GitKraken-v${version}.tar.gz"; 66 + hash = "sha256-42NP+23PlyIiqzwjpktz8ipJ5tjzbbszSB9qkeE5jVU="; 67 }; 68 69 x86_64-darwin = fetchzip { 70 url = "https://release.axocdn.com/darwin/GitKraken-v${version}.zip"; 71 + hash = "sha256-/GiHFVz9RyC/bliA8m2YwCwnUQfxT9C0qR+YPr6zdqQ="; 72 }; 73 74 aarch64-darwin = fetchzip { 75 url = "https://release.axocdn.com/darwin-arm64/GitKraken-v${version}.zip"; 76 + hash = "sha256-CfhloCczC2z1AHNh0vGXk9Np+BnFI0U/QrPIFBWsYjs="; 77 }; 78 }; 79
+1 -1
pkgs/by-name/gi/gitkraken/update.sh
··· 25 hash=$(nix-hash --sri --type sha256 "$(nix-prefetch-url --print-path --unpack "${tarballs[${arch}]}" | tail -n1)") 26 echo >&2 "=== Updating package.nix for ${arch}..." 27 # update-source-version expects to be at the root of nixpkgs 28 - (cd "${nixpkgs}" && update-source-version gitkraken "${version}" "${hash}" --system="${arch}" --version-key="srcs.${arch}") 29 done 30 31 echo >&2 "=== Done!"
··· 25 hash=$(nix-hash --sri --type sha256 "$(nix-prefetch-url --print-path --unpack "${tarballs[${arch}]}" | tail -n1)") 26 echo >&2 "=== Updating package.nix for ${arch}..." 27 # update-source-version expects to be at the root of nixpkgs 28 + (cd "${nixpkgs}" && update-source-version gitkraken "${version}" "${hash}" --system="${arch}" --ignore-same-version) 29 done 30 31 echo >&2 "=== Done!"