-
-
Notifications
You must be signed in to change notification settings - Fork 15.1k
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
weylus: build from source and fix desktop shortcut #161052
Conversation
@legendofmiracles Ping? |
This pull request has been mentioned on NixOS Discourse. There might be relevant details there: |
''; | ||
|
||
meta = with lib; { | ||
description = "Use your tablet as graphic tablet/touch screen on your computer"; | ||
homepage = "https://github.com/H-M-H/Weylus"; | ||
license = with licenses; [ agpl3Only ]; | ||
maintainers = with maintainers; [ lom ]; | ||
platforms = [ "x86_64-linux" ]; |
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.
It currently is not building on darwin because libva -> libdrm -> libpciaccess which does not build on darwin. I don't think we should fix this blind. Not sure if you want to keep it like it is or change something.
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.
Ah, libva is only used on linux. H-M-H/Weylus@b47e5f2
Result of 1 package built:
|
Yes, it builds. I don't know if it fully works but at least better than nothing. |
Thanks! |
Redos NixOS#145051 after NixOS#161052. Co-authored-by: Andy Chun @noneucat <[email protected]>
|
||
postFixup = let |
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.
GST_PLUGIN_PATH is still required (H-M-H/Weylus#155 (comment)). I've opened #174434 to re-add it on Linux.
Redos NixOS#145051 after NixOS#161052. Co-authored-by: Andy Chun @noneucat <[email protected]>
Redos NixOS#145051 after NixOS#161052. Co-authored-by: Andy Chun @noneucat <[email protected]>
Motivation for this change
I'm using weylus. I want to build it from source. The desktop icon is missing. I fix it.
Things done
sandbox = true
set innix.conf
? (See Nix manual)nix-shell -p nixpkgs-review --run "nixpkgs-review rev HEAD"
. Note: all changes have to be committed, also see nixpkgs-review usage./result/bin/
)nixos/doc/manual/md-to-db.sh
to update generated release notes@legendofmiracles