parachute: init at 0.9.1
This commit is contained in:
parent
c60bb493e6
commit
6104ef8749
37
pkgs/desktops/plasma-5/3rdparty/kwin/scripts/parachute.nix
vendored
Normal file
37
pkgs/desktops/plasma-5/3rdparty/kwin/scripts/parachute.nix
vendored
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
{ lib, mkDerivation, fetchFromGitHub
|
||||||
|
, kcoreaddons, kwindowsystem, plasma-framework, systemsettings }:
|
||||||
|
|
||||||
|
mkDerivation rec {
|
||||||
|
pname = "parachute";
|
||||||
|
version = "0.9.1";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "tcorreabr";
|
||||||
|
repo = "parachute";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "QIWb1zIGfkS+Bef7LK+JA6XpwGUW+79XZY47j75nlCE=";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
kcoreaddons kwindowsystem plasma-framework systemsettings
|
||||||
|
];
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
# 1. --global still installs to $HOME/.local/share so we use --packageroot
|
||||||
|
# 2. plasmapkg2 doesn't copy metadata.desktop into place, so we do that manually
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
plasmapkg2 --type kwinscript --install ${src} --packageroot $out/share/kwin/scripts
|
||||||
|
install -Dm644 ${src}/metadata.desktop $out/share/kservices5/Parachute.desktop
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Look at your windows and desktops from above.";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = with maintainers; [ mjlbach ];
|
||||||
|
inherit (src.meta) homepage;
|
||||||
|
inherit (kwindowsystem.meta) platforms;
|
||||||
|
};
|
||||||
|
}
|
@ -146,6 +146,7 @@ let
|
|||||||
kwin-dynamic-workspaces = callPackage ./3rdparty/kwin/scripts/dynamic-workspaces.nix { };
|
kwin-dynamic-workspaces = callPackage ./3rdparty/kwin/scripts/dynamic-workspaces.nix { };
|
||||||
kwin-tiling = callPackage ./3rdparty/kwin/scripts/tiling.nix { };
|
kwin-tiling = callPackage ./3rdparty/kwin/scripts/tiling.nix { };
|
||||||
krohnkite = callPackage ./3rdparty/kwin/scripts/krohnkite.nix { };
|
krohnkite = callPackage ./3rdparty/kwin/scripts/krohnkite.nix { };
|
||||||
|
parachute = callPackage ./3rdparty/kwin/scripts/parachute.nix { };
|
||||||
};
|
};
|
||||||
|
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user