gnomeExtensions.drop-down-terminal: mark as broken

This commit is contained in:
Jan Tojnar 2020-03-22 04:42:20 +01:00
parent 92b58b6248
commit 687254fe2a
No known key found for this signature in database
GPG key ID: 7FAB2A15F7A607A4

View file

@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, substituteAll, gjs, vte }:
{ stdenv, fetchFromGitHub, substituteAll, gjs, vte, gnome3 }:
stdenv.mkDerivation rec {
pname = "gnome-shell-extension-drop-down-terminal";
@ -30,5 +30,7 @@ stdenv.mkDerivation rec {
license = licenses.gpl3;
maintainers = with maintainers; [ ericdallo ];
homepage = https://github.com/zzrough/gs-extensions-drop-down-terminal;
# Doesn't support 3.36
broken = stdenv.lib.versionAtLeast gnome3.gnome-shell.version "3.34";
};
}