-
-
Notifications
You must be signed in to change notification settings - Fork 15.4k
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.system-monitor: fix this package and upgrade to v33 #36410
gnomeExtensions.system-monitor: fix this package and upgrade to v33 #36410
Conversation
|
||
stdenv.mkDerivation rec { | ||
name = "gnome-shell-system-monitor-${version}"; | ||
version = "8b31f070e9e59109d729661ced313d6a63e31787"; | ||
version = "v33"; |
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.
For Nix to understand the version, it must start with a number. (Change this one to "33" and set rev = "v${version}";
below.)
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.
Looks good. (Just nitpick about Nix version.)
Maybe it would be possible to patch the extension files to use |
Thanks for the idea @jtojnar ! I will take a look. |
Not sure how safe it is wrt conflicts (e.g one extension adds |
I was going to try this approach, but I realized I don't know how I can retrieve the packages paths to include them with |
You could use nixpkgs/pkgs/applications/misc/orca/default.nix Lines 24 to 29 in 7c4886d
|
Great, thanks @jtojnar ! |
Motivation for this change
Having a working extension :)
Things done
build-use-sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)See the mailing list for a discussion about the sessionPath parameter in gnome3 (https://groups.google.com/forum/#!topic/nix-devel/jJevoZx2ZFo)...