Merge pull request #147920 from sikmir/telescope

This commit is contained in:
Sandro 2021-11-30 20:44:36 +01:00 committed by GitHub
commit a6dcdcac5f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -7,17 +7,18 @@
, libressl
, ncurses
, autoreconfHook
, buildPackages
}:
stdenv.mkDerivation rec {
pname = "telescope";
version = "0.5.2";
version = "0.6.1";
src = fetchFromGitHub {
owner = "omar-polo";
repo = pname;
rev = version;
sha256 = "sha256-AdbFJfoicQUgJ9kesIWZ9ygttyjjDeC0UHRI98GwoZ8=";
sha256 = "sha256-r2+jvmnW9EeQf/2X2cOxnOa+HGuGHV6YMftT2MxbSYQ=";
};
nativeBuildInputs = [
@ -32,6 +33,10 @@ stdenv.mkDerivation rec {
ncurses
];
configureFlags = [
"HOSTCC=${buildPackages.stdenv.cc}/bin/${buildPackages.stdenv.cc.targetPrefix}cc"
];
meta = with lib; {
description = "Telescope is a w3m-like browser for Gemini";
homepage = "https://telescope.omarpolo.com/";