about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-07-20 23:48:42 +0200
committerGitHub <noreply@github.com>2021-07-20 23:48:42 +0200
commit0d9a9048412ee8678ee07be6e0a5ed9c23866d85 (patch)
treee88284a526ca6a2db509d8df965c815c17822bbe /pkgs/applications/networking/browsers
parent51380dd42998a934bc2bb9e11b794ec58adf4bad (diff)
parent6671b113bd3aca45910616f178e1ed262e1795b6 (diff)
Merge pull request #130630 from heph2/submit/nixpkgs-my-branch
Diffstat (limited to 'pkgs/applications/networking/browsers')
-rw-r--r--pkgs/applications/networking/browsers/telescope/default.nix38
1 files changed, 38 insertions, 0 deletions
diff --git a/pkgs/applications/networking/browsers/telescope/default.nix b/pkgs/applications/networking/browsers/telescope/default.nix
new file mode 100644
index 0000000000000..fa9b3853a9d14
--- /dev/null
+++ b/pkgs/applications/networking/browsers/telescope/default.nix
@@ -0,0 +1,38 @@
+{ stdenv
+, lib
+, fetchurl
+, pkg-config
+, bison
+, libevent
+, libressl
+, ncurses
+}:
+
+stdenv.mkDerivation rec {
+  pname = "telescope";
+  version = "0.3.1";
+
+  src = fetchurl {
+    url = "https://github.com/omar-polo/telescope/releases/download/${version}/telescope-${version}.tar.gz";
+    sha256 = "11xrsh064ph1idhygh52y4mqapgwn1cqr0l3naj5n2a2p7lcsvvw";
+  };
+
+  nativeBuildInputs = [
+    pkg-config
+    bison
+  ];
+
+  buildInputs = [
+    libevent
+    libressl
+    ncurses
+  ];
+
+  meta = with lib; {
+    description = "Telescope is a w3m-like browser for Gemini";
+    homepage = "https://telescope.omarpolo.com/";
+    license = licenses.isc;
+    maintainers = with maintainers; [ heph2 ];
+    platforms = platforms.unix;
+  };
+}