Merge pull request #310883 from GetPsyched/hoppscotch

hoppscotch: 24.3.2-1 -> 24.3.3-1, meta updates
This commit is contained in:
Weijia Wang
2024-05-12 20:34:21 +02:00
committed by GitHub
+17 -9
View File
@@ -7,31 +7,39 @@
let
pname = "hoppscotch";
version = "24.3.2-1";
version = "24.3.3-1";
src = fetchurl {
aarch64-darwin = {
url = "https://github.com/hoppscotch/releases/releases/download/v${version}/Hoppscotch_mac_aarch64.dmg";
hash = "sha256-/Sa51x/Hy4mOxNL+6r+5sk/cF4iBbup9UBaWqzsnrBM=";
hash = "sha256-litOYRsUOx6VpkA1LPx7aGGagqIVL9fgNsYoP5n/2mo=";
};
x86_64-darwin = {
url = "https://github.com/hoppscotch/releases/releases/download/v${version}/Hoppscotch_mac_x64.dmg";
hash = "sha256-6vm3pQPg5OKRtP6W1CNQxy4fi9niw4Y4nXjargwHxuA=";
hash = "sha256-UG89Fv9J8SnzPVoIO16LOprxPmZuu/zyox1b+jn+eNw=";
};
x86_64-linux = {
url = "https://github.com/hoppscotch/releases/releases/download/v${version}/Hoppscotch_linux_x64.AppImage";
hash = "sha256-iGD/9alVwSsIhbSl9HZXdB5MQNSjn18YdgebyoizriE=";
hash = "sha256-110l1DTyvH2M0ex1r35Q+55NiJ8nYum1KdWQXDvAdxo=";
};
}.${stdenv.system} or (throw "Unsupported system: ${stdenv.system}");
meta = {
meta = with lib; {
description = "Open source API development ecosystem";
mainProgram = "hoppscotch";
longDescription = ''
Hoppscotch is a lightweight, web-based API development suite. It was built
from the ground up with ease of use and accessibility in mind providing
all the functionality needed for API developers with minimalist,
unobtrusive UI.
'';
homepage = "https://hoppscotch.com";
changelog = "https://github.com/hoppscotch/hoppscotch/releases/tag/${version}";
downloadPage = "https://hoppscotch.com/downloads";
changelog = "https://hoppscotch.com/changelog";
license = licenses.mit;
maintainers = with maintainers; [ DataHearth ];
mainProgram = "hoppscotch";
platforms = [ "aarch64-darwin" "x86_64-darwin" "x86_64-linux" ];
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ DataHearth ];
sourceProvenance = [ sourceTypes.binaryNativeCode ];
};
in
if stdenv.isDarwin then stdenv.mkDerivation