Compare commits
2 commits
70704a3887
...
bdf203599f
Author | SHA1 | Date | |
---|---|---|---|
bdf203599f | |||
e3d367afdc |
2 changed files with 4 additions and 84 deletions
sakura/packages
|
@ -1,82 +0,0 @@
|
|||
(define-module (sakura packages emacs-xyz)
|
||||
#:use-module ((guix licenses) #:prefix license:)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix git-download)
|
||||
#:use-module (guix build-system emacs)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages emacs-xyz)
|
||||
#:use-module (guix utils))
|
||||
|
||||
(define-public emacs-nerd-icons-dired
|
||||
(let ((commit "c0b0cda2b92f831d0f764a7e8c0c6728d6a27774")
|
||||
(revision "1")
|
||||
(version "1.0.0"))
|
||||
(package
|
||||
(name "emacs-nerd-icons-dired")
|
||||
(version (git-version version revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rainstormstudio/nerd-icons-dired")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1iwqzh32j6fsx0nl4y337iqkx6prbdv6j83490riraklzywv126a"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
(list emacs-nerd-icons))
|
||||
(home-page "https://github.com/rainstormstudio/nerd-icons-dired")
|
||||
(synopsis "Use nerd-icons for Dired")
|
||||
(description "Use nerd-icons for Dired")
|
||||
(license license:gpl3))))
|
||||
|
||||
(define-public emacs-treemacs-nerd-icons
|
||||
(let ((commit "9876cb478145a0ec4e36f64ff6583f3de7126216")
|
||||
(revision "1")
|
||||
(version "1.0.0"))
|
||||
(package
|
||||
(name "emacs-treemacs-nerd-icons")
|
||||
(version (git-version version revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/rainstormstudio/treemacs-nerd-icons")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1xphhxdibjhp27z2lj1nxlxf7cfm8vpi44fr01fk9krqy9vaz0q0"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
(list emacs-treemacs
|
||||
emacs-nerd-icons))
|
||||
(home-page "https://github.com/rainstormstudio/treemacs-nerd-icons")
|
||||
(synopsis "nerd-icons theme for treemacs")
|
||||
(description "nerd-icons theme for treemacs")
|
||||
(license license:gpl3))))
|
||||
|
||||
(define-public emacs-tab-line-nerd-icons
|
||||
(let ((commit "f0d32a581246d1fe59fb03f37f627e9422d3ae42")
|
||||
(revision "1")
|
||||
(version "1.0.0"))
|
||||
(package
|
||||
(name "emacs-tab-line-nerd-icons")
|
||||
(version (git-version version revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/emacsmirror/tab-line-nerd-icons")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1i8fy7v2vi4f1h8bj33i941nwsv0d55j3ajm1qknrmhz4r1q4qha"))))
|
||||
(build-system emacs-build-system)
|
||||
(propagated-inputs
|
||||
(list emacs-nerd-icons))
|
||||
(home-page "https://github.com/emacsmirror/tab-line-nerd-icons")
|
||||
(synopsis "nerd-icons for tab-line")
|
||||
(description "nerd-icons for tab-line")
|
||||
(license license:gpl3))))
|
|
@ -15,6 +15,7 @@
|
|||
#:use-module (gnu packages image)
|
||||
#:use-module (gnu packages cmake)
|
||||
#:use-module (gnu packages linux)
|
||||
#:use-module (gnu packages lua)
|
||||
#:use-module (gnu packages vulkan)
|
||||
#:use-module (gnu packages python)
|
||||
#:use-module (gnu packages pciutils)
|
||||
|
@ -132,7 +133,7 @@
|
|||
(define-public gamescope
|
||||
(package
|
||||
(name "gamescope")
|
||||
(version "3.15.14")
|
||||
(version "3.16.1")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
|
@ -142,7 +143,7 @@
|
|||
(patches (sakura-patches "gamescope-fix-fallbacks.patch"))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0j9vjqwidaia72l4g2hza74wqdl8b9j45jzblb02v4d4nmzky3gy"))))
|
||||
(base32 "1gxrka9j6231nmvkmg6az1dh24swp91ylczpnfjx8l5f3nd20p41"))))
|
||||
(build-system meson-build-system)
|
||||
(arguments
|
||||
(list #:configure-flags #~(list "-Dpipewire=enabled"
|
||||
|
@ -227,6 +228,7 @@
|
|||
libxt
|
||||
libxtst
|
||||
libdecor
|
||||
luajit
|
||||
pipewire
|
||||
sdl2
|
||||
vulkan-loader
|
||||
|
|
Loading…
Add table
Reference in a new issue