commit c2ae58473374115b33337e28867126d06e901ee7
parent 2ed9a31d5beaf92bf711bfcccd529fa4ec2556af
Author: Nikolay Korotkiy <sikmir@disroot.org>
Date: Thu, 17 Mar 2022 23:19:20 +0300
Remove qutebrowser-bin
Diffstat:
2 files changed, 0 insertions(+), 35 deletions(-)
diff --git a/pkgs/applications/networking/qutebrowser/bin.nix b/pkgs/applications/networking/qutebrowser/bin.nix
@@ -1,34 +0,0 @@
-{ lib, stdenv, fetchfromgh, undmg }:
-
-stdenv.mkDerivation rec {
- pname = "qutebrowser-bin";
- version = "1.14.1";
-
- src = fetchfromgh {
- owner = "qutebrowser";
- repo = "qutebrowser";
- version = "v${version}";
- name = "qutebrowser-${version}.dmg";
- sha256 = "1a4pakpn39pq72bgkqd1f1rik139c0shjfszxh1iqn7fb3dqrqmj";
- };
-
- preferLocalBuild = true;
-
- nativeBuildInputs = [ undmg ];
-
- sourceRoot = ".";
-
- installPhase = ''
- mkdir -p $out/Applications
- cp -r *.app $out/Applications
- '';
-
- meta = with lib; {
- description = "A keyboard-driven, vim-like browser based on PyQt5";
- homepage = "https://www.qutebrowser.org/";
- license = licenses.gpl3Plus;
- platforms = [ "x86_64-darwin" ];
- maintainers = [ maintainers.sikmir ];
- skip.ci = true;
- };
-}
diff --git a/pkgs/default.nix b/pkgs/default.nix
@@ -12,7 +12,6 @@ lib.makeScope newScope (
klogg = libsForQt5.callPackage ./applications/misc/klogg { };
klogg-bin = callPackage ./applications/misc/klogg/bin.nix { };
macpass-bin = callPackage ./applications/macpass/bin.nix { };
- qutebrowser-bin = callPackage ./applications/networking/qutebrowser/bin.nix { };
synwrite-bin = callPackage ./applications/synwrite/bin.nix { };
wireguard-statusbar-bin = callPackage ./applications/wireguard-statusbar { };