Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
47 lines
1.1 KiB
Nix
47 lines
1.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
replaceVars,
|
|
gjs,
|
|
vte,
|
|
gnome,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "gnome-shell-extension-drop-down-terminal";
|
|
version = "unstable-2020-03-25";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zzrough";
|
|
repo = "gs-extensions-drop-down-terminal";
|
|
rev = "a59669afdb395b3315619f62c1f740f8b2f0690d";
|
|
sha256 = "0igfxgrjdqq6z6xg4rsawxn261pk25g5dw2pm3bhwz5sqsy4bq3i";
|
|
};
|
|
|
|
passthru = {
|
|
extensionUuid = "drop-down-terminal@gs-extensions.zzrough.org";
|
|
extensionPortalSlug = "drop-down-terminal";
|
|
};
|
|
|
|
patches = [
|
|
(replaceVars ./fix_vte_and_gjs.patch {
|
|
inherit gjs vte;
|
|
})
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p $out/share/gnome-shell/extensions
|
|
cp -r "drop-down-terminal@gs-extensions.zzrough.org" $out/share/gnome-shell/extensions/
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Configurable drop down terminal shell";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ ericdallo ];
|
|
homepage = "https://github.com/zzrough/gs-extensions-drop-down-terminal";
|
|
};
|
|
}
|