Merge pull request #277522 from trzpiot/bruno-1.5.1

bruno: 1.5.0 -> 1.5.1
This commit is contained in:
Nikolay Korotkiy 2023-12-31 00:37:57 +04:00 committed by GitHub
commit d3252cdcea
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -15,11 +15,11 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "bruno"; pname = "bruno";
version = "1.5.0"; version = "1.5.1";
src = fetchurl { src = fetchurl {
url = "https://github.com/usebruno/bruno/releases/download/v${version}/bruno_${version}_amd64_linux.deb"; url = "https://github.com/usebruno/bruno/releases/download/v${version}/bruno_${version}_amd64_linux.deb";
hash = "sha256-ptrayWDnRXGUC/mgSnQ/8sIEdey+6uoa3LGBGPQYuY8="; hash = "sha256-kJfS3yORwvh7rMGgDV5Bn2L7+7ZMa8ZBpRI1P5y+ShQ=";
}; };
nativeBuildInputs = [ autoPatchelfHook dpkg wrapGAppsHook ]; nativeBuildInputs = [ autoPatchelfHook dpkg wrapGAppsHook ];
@ -52,10 +52,11 @@ stdenv.mkDerivation rec {
passthru.updateScript = nix-update-script { }; passthru.updateScript = nix-update-script { };
meta = with lib; { meta = with lib; {
description = "Open-source IDE For exploring and testing APIs."; description = "Open-source IDE For exploring and testing APIs";
homepage = "https://www.usebruno.com"; homepage = "https://www.usebruno.com";
license = licenses.mit; license = licenses.mit;
maintainers = with maintainers; [ water-sucks lucasew kashw2 ]; maintainers = with maintainers; [ water-sucks lucasew kashw2 ];
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
sourceProvenance = with sourceTypes; [ binaryNativeCode ];
}; };
} }