mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-10 03:23:29 +03:00
telescope: 0.10.1 → 0.11 (#406082)
This commit is contained in:
commit
f575a9791f
1 changed files with 10 additions and 10 deletions
|
@ -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;
|
||||||
};
|
};
|
||||||
}
|
})
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue