telescope: 0.10.1 → 0.11 (#406082)

Changed files
+10 -10
pkgs
by-name
te
telescope
+10 -10
pkgs/by-name/te/telescope/package.nix
···
buildPackages,
}:
-
stdenv.mkDerivation rec {
+
stdenv.mkDerivation (finalAttrs: {
pname = "telescope";
-
version = "0.10.1";
+
version = "0.11";
src = fetchFromGitHub {
owner = "omar-polo";
repo = "telescope";
-
rev = version;
-
hash = "sha256-MVZ/pvDAETacQiEMEXM0gYM20LXqNiHtMfFGqS1vipY=";
+
tag = finalAttrs.version;
+
hash = "sha256-GKeUXa4RKYkoywrCrpenfLt10Rdj9L0xYI3tf2hFAbk=";
};
postPatch = ''
···
"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;
};
-
}
+
})