telescope: 0.10.1 → 0.11 (#406082)

This commit is contained in:
Nikolay Korotkiy 2025-05-16 21:20:25 +04:00 committed by GitHub
commit f575a9791f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -12,15 +12,15 @@
buildPackages, buildPackages,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation (finalAttrs: {
pname = "telescope"; pname = "telescope";
version = "0.10.1"; version = "0.11";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "omar-polo"; owner = "omar-polo";
repo = "telescope"; repo = "telescope";
rev = version; tag = finalAttrs.version;
hash = "sha256-MVZ/pvDAETacQiEMEXM0gYM20LXqNiHtMfFGqS1vipY="; hash = "sha256-GKeUXa4RKYkoywrCrpenfLt10Rdj9L0xYI3tf2hFAbk=";
}; };
postPatch = '' postPatch = ''
@ -45,11 +45,11 @@ stdenv.mkDerivation rec {
"HOSTCC=${buildPackages.stdenv.cc}/bin/${buildPackages.stdenv.cc.targetPrefix}cc" "HOSTCC=${buildPackages.stdenv.cc}/bin/${buildPackages.stdenv.cc.targetPrefix}cc"
]; ];
meta = with lib; { meta = {
description = "Telescope is a w3m-like browser for Gemini"; description = "Telescope is a w3m-like browser for Gemini";
homepage = "https://www.telescope-browser.org/"; homepage = "https://telescope-browser.org/";
license = licenses.isc; license = lib.licenses.isc;
maintainers = with maintainers; [ heph2 ]; maintainers = with lib.maintainers; [ heph2 ];
platforms = platforms.unix; platforms = lib.platforms.unix;
}; };
} })