Gitnuro 1.3.1 -> 1.4.2 (#358051)

This commit is contained in:
Peder Bergebakken Sundt 2024-11-24 03:48:11 +01:00 committed by GitHub
commit 86579c7725
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -10,18 +10,18 @@
stdenv.mkDerivation rec {
pname = "gitnuro";
version = "1.3.1";
version = "1.4.2";
src = fetchurl (
if stdenv.hostPlatform.system == "x86_64-linux" then
{
url = "https://github.com/JetpackDuba/Gitnuro/releases/download/v${version}/Gitnuro-linux-x86_64-${version}.jar";
hash = "sha256-7yne9dD/7VT+H4tIBJvpOf8ksECCpoNAa8TSmFmjYMw=";
hash = "sha256-1lwuLPR6b1+I2SWaYaVrZkMcYVRAf1R7j/AwjQf03UM=";
}
else if stdenv.hostPlatform.system == "aarch64-linux" then
{
url = "https://github.com/JetpackDuba/Gitnuro/releases/download/v${version}/Gitnuro-linux-arm_aarch64-${version}.jar";
hash = "sha256-6TRQfIhaKBjNPn3tEVWoUF92JAmwlHUtQZE8gKEZ/ZI=";
hash = "sha256-wnHW1YK4FKi5EDF/E0S+yr0tugtv3qVlCbT3+x9bM8s=";
}
else throw "Unsupported architecture: ${stdenv.hostPlatform.system}"
);