-
-
Notifications
You must be signed in to change notification settings - Fork 14.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
gnomeExtensions.wsmatrix: new package #67876
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
{ stdenv, fetchFromGitHub, glib }: | ||
|
||
stdenv.mkDerivation rec { | ||
name = "gnome-shell-wsmatrix-${version}"; | ||
version = "9543a73df7bac9476f8adeba9d7a14fdacb57b7d"; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you specify a release tag from https://github.com/mzur/gnome-shell-wsmatrix/releases as the version? |
||
|
||
src = fetchFromGitHub { | ||
owner = "mzur"; | ||
repo = "gnome-shell-wsmatrix"; | ||
rev = version; | ||
sha256 = "0x5y91pj2pg25pq3a2p05lsyafyg950b4nc1zc5glmsc7s42zzkw"; | ||
}; | ||
|
||
buildInputs = [ | ||
glib | ||
]; | ||
|
||
buildPhase = '' | ||
make schemas | ||
''; | ||
|
||
installPhase = '' | ||
mkdir -p $out/share/gnome-shell/extensions | ||
cp -r ${uuid} $out/share/gnome-shell/extensions/${uuid} | ||
''; | ||
|
||
uuid = "wsmatrix@martin.zurowietz.de"; | ||
|
||
meta = with stdenv.lib; { | ||
description = "Arranges workspaces in a configurable grid"; | ||
license = licenses.gpl3Plus; | ||
maintainers = with maintainers; [ deepfire ]; | ||
homepage = https://github.com/mzur/gnome-shell-wsmatrix; | ||
}; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22650,6 +22650,7 @@ in | |
timepp = callPackage ../desktops/gnome-3/extensions/timepp { }; | ||
topicons-plus = callPackage ../desktops/gnome-3/extensions/topicons-plus { }; | ||
window-corner-preview = callPackage ../desktops/gnome-3/extensions/window-corner-preview { }; | ||
wsmatrix = callPackage ../desktops/gnome-3/extensions/wsmatrix.nix { }; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Can you move |
||
}; | ||
|
||
hsetroot = callPackage ../tools/X11/hsetroot { }; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Most of the gnome shell extensions use the convention
gnome-shell-extension-...
instead ofgnome-shell-...
. I don't have an opinion here other than "consistency is good", so unless others object, please add-extension
here.