mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-12 08:43:06 +00:00
fbd5b7c68a
Contains experimental GNOME 43 support, which is probably better than simply refusing to start for current versions of GNOME.
37 lines
944 B
Nix
37 lines
944 B
Nix
{ lib
|
|
, stdenv
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "gnome-shell-extension-paperwm";
|
|
version = "unstable-2022-12-14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "paperwm";
|
|
repo = "PaperWM";
|
|
rev = "7c0863c944a02d4e8095034403bff6ade3579091";
|
|
hash = "sha256-EN0sWW/NymRNKrApeFnqg8ax7Et4hr0gKZuvMF4kJYU=";
|
|
};
|
|
|
|
dontConfigure = true;
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
mkdir -p "$out/share/gnome-shell/extensions/paperwm@hedning:matrix.org"
|
|
cp -r . "$out/share/gnome-shell/extensions/paperwm@hedning:matrix.org"
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/paperwm/PaperWM";
|
|
description = "Tiled scrollable window management for Gnome Shell";
|
|
license = licenses.gpl3Plus;
|
|
maintainers = with maintainers; [ hedning AndersonTorres ];
|
|
platforms = platforms.all;
|
|
};
|
|
|
|
passthru.extensionUuid = "paperwm@hedning:matrix.org";
|
|
}
|