adding a lot of guix things to better setup guix
A lot of these changes are for Guix not Nix, however, nix still works on the laptop so I'm going to reset the changes on the desktop to this commit so that Nix might work there for Camp.
This commit is contained in:
parent
bad4b948fb
commit
fe1e6c695b
87 changed files with 37132 additions and 38 deletions
21
guix/pkgs/qt5ct-kde.scm
Normal file
21
guix/pkgs/qt5ct-kde.scm
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
(define-module (pkgs qt5ct-kde)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (guix download)
|
||||
#:use-module (guix build-system qt)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages qt)
|
||||
#:use-module (guix gexp)
|
||||
#:use-module (guix packages)
|
||||
#:use-module (srfi srfi-1))
|
||||
|
||||
(define-public qt5ct-kde
|
||||
(package
|
||||
(inherit qt5ct)
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri
|
||||
(string-append "mirror://sourceforge/qt5ct/qt5ct-" version ".tar.bz2"))
|
||||
(patches (search-patches "qt5ct-kde.patch"))
|
||||
(sha256
|
||||
(base32 "14742vs32m98nbfb5mad0i8ciff5f45gfcb5v03p4hh2dvhhqgfn"))))))
|
||||
Loading…
Add table
Add a link
Reference in a new issue