Unverified Commit fd33196b authored by Nikolay Korotkiy's avatar Nikolay Korotkiy
Browse files

telescope: modernize

parent 4a9ddcc4
Loading
Loading
Loading
Loading
+8 −8
Original line number Diff line number Diff line
@@ -12,14 +12,14 @@
  buildPackages,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "telescope";
  version = "0.11";

  src = fetchFromGitHub {
    owner = "omar-polo";
    repo = "telescope";
    rev = version;
    tag = finalAttrs.version;
    hash = "sha256-GKeUXa4RKYkoywrCrpenfLt10Rdj9L0xYI3tf2hFAbk=";
  };

@@ -45,11 +45,11 @@ stdenv.mkDerivation rec {
    "HOSTCC=${buildPackages.stdenv.cc}/bin/${buildPackages.stdenv.cc.targetPrefix}cc"
  ];

  meta = with lib; {
  meta = {
    description = "Telescope is a w3m-like browser for Gemini";
    homepage = "https://www.telescope-browser.org/";
    license = licenses.isc;
    maintainers = with maintainers; [ heph2 ];
    platforms = platforms.unix;
    homepage = "https://telescope-browser.org/";
    license = lib.licenses.isc;
    maintainers = with lib.maintainers; [ heph2 ];
    platforms = lib.platforms.unix;
  };
}
})