about summary refs log tree commit diff
path: root/pkgs/applications/networking/browsers
diff options
context:
space:
mode:
authorLinus Heckemann <git@sphalerite.org>2020-01-10 11:30:45 +0100
committerFlorian Klink <flokli@flokli.de>2020-02-02 22:28:20 +0100
commitc99e248f3c1ce6a114c5a93a0a7542574e5694cc (patch)
treea68eec8ad79950725ad8403c743edadc3eee1ec1 /pkgs/applications/networking/browsers
parent178ac3cb99a2af4e39fa287ce4774ebb608eef1a (diff)
downloadnixlib-c99e248f3c1ce6a114c5a93a0a7542574e5694cc.tar
nixlib-c99e248f3c1ce6a114c5a93a0a7542574e5694cc.tar.gz
nixlib-c99e248f3c1ce6a114c5a93a0a7542574e5694cc.tar.bz2
nixlib-c99e248f3c1ce6a114c5a93a0a7542574e5694cc.tar.lz
nixlib-c99e248f3c1ce6a114c5a93a0a7542574e5694cc.tar.xz
nixlib-c99e248f3c1ce6a114c5a93a0a7542574e5694cc.tar.zst
nixlib-c99e248f3c1ce6a114c5a93a0a7542574e5694cc.zip
otter-browser: remove
I have no interest in maintaining this anymore and it has no other maintainers.
Diffstat (limited to 'pkgs/applications/networking/browsers')
-rw-r--r--pkgs/applications/networking/browsers/otter/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/applications/networking/browsers/otter/default.nix b/pkgs/applications/networking/browsers/otter/default.nix
deleted file mode 100644
index d41f84404201..000000000000
--- a/pkgs/applications/networking/browsers/otter/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ stdenv, cmake, fetchFromGitHub
-, qtbase, qtmultimedia, qtwebengine, qtxmlpatterns
-, version ? "1.0.01"
-, sourceSha ? "1jw8bj3lcqngr0mqwvz1gf47qjxbwiyda7x4sm96a6ckga7pcwyb"
-}:
-stdenv.mkDerivation {
-  pname = "otter-browser";
-  inherit version;
-
-  src = fetchFromGitHub {
-    owner = "OtterBrowser";
-    repo = "otter-browser";
-    rev = "v${version}";
-    sha256 = sourceSha;
-  };
-
-  nativeBuildInputs = [ cmake ];
-
-  buildInputs = [ qtbase qtmultimedia qtwebengine qtxmlpatterns ];
-
-  meta = with stdenv.lib; {
-    homepage = https://otter-browser.org;
-    license = licenses.gpl3Plus;
-    description = "Browser aiming to recreate the best aspects of the classic Opera (12.x) UI using Qt5";
-    maintainers = with maintainers; [ lheckemann ];
-  };
-}