.
This commit is contained in:
parent
a7ed82b137
commit
74314619c6
1 changed files with 36 additions and 0 deletions
|
@ -25,6 +25,7 @@
|
|||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages ninja)
|
||||
#:use-module (gnu packages pciutils)
|
||||
#:use-module (gnu packages pcre)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages pkg-config)
|
||||
#:use-module (gnu packages version-control)
|
||||
|
@ -36,6 +37,41 @@
|
|||
#:use-module (gnu packages wm)
|
||||
#:use-module (gnu packages xorg))
|
||||
|
||||
(define-public swayfx
|
||||
(package
|
||||
(inherit sway)
|
||||
(name "swayfx")
|
||||
(version "0.3.2")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/WillPower3309/swayfx")
|
||||
(commit version)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"13d8icd45j937jgkidr7cyjys4nnvxh4ilp7ml0i2ml39ipv01qv"))))
|
||||
(build-system meson-build-system)
|
||||
(inputs (list basu
|
||||
cairo
|
||||
gdk-pixbuf
|
||||
json-c
|
||||
libevdev
|
||||
libinput-minimal
|
||||
libxkbcommon
|
||||
pango
|
||||
pcre2
|
||||
swaybg
|
||||
wayland
|
||||
wlroots-0.16))
|
||||
(home-page "https://github.com/WillPower3309/swayfx")
|
||||
(synopsis "Sway Fork with extra options and effects")
|
||||
(description
|
||||
"Fork of Sway, a Wayland compositor compatible with i3. SwayFX
|
||||
adds extra options and effects to the original Sway, such as blur, rounded
|
||||
corners, shadows, inactive window dimming, etc.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public tomlplusplus
|
||||
(package
|
||||
(name "tomlplusplus")
|
||||
|
|
Loading…
Reference in a new issue