mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2024-11-22 16:38:09 +01:00
nongnu: Reindent with .dir-locals.el settings.
* nongnu/packages/gog.scm: Reindent with .dir-locals.el settings. * nongnu/packages/linux.scm: Reindent with .dir-locals.el settings.
This commit is contained in:
parent
e9be404d94
commit
7513783896
2 changed files with 62 additions and 62 deletions
|
@ -31,35 +31,35 @@
|
||||||
|
|
||||||
(define-public lgogdownloader
|
(define-public lgogdownloader
|
||||||
(package
|
(package
|
||||||
(name "lgogdownloader")
|
(name "lgogdownloader")
|
||||||
(version "3.5")
|
(version "3.5")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/Sude-/lgogdownloader.git")
|
(url "https://github.com/Sude-/lgogdownloader.git")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32 "0a3rrkgqwdqxx3ghzw182jx88gzzw6ldp3jasmgnr4l7gpxkmwws"))))
|
(base32 "0a3rrkgqwdqxx3ghzw182jx88gzzw6ldp3jasmgnr4l7gpxkmwws"))))
|
||||||
(build-system cmake-build-system)
|
(build-system cmake-build-system)
|
||||||
(arguments '(#:tests? #f)) ; no tests
|
(arguments '(#:tests? #f)) ; no tests
|
||||||
(inputs
|
(inputs
|
||||||
`(("boost" ,boost)
|
`(("boost" ,boost)
|
||||||
("curl" ,curl)
|
("curl" ,curl)
|
||||||
("htmlcxx" ,htmlcxx)
|
("htmlcxx" ,htmlcxx)
|
||||||
("jsoncpp" ,jsoncpp)
|
("jsoncpp" ,jsoncpp)
|
||||||
("liboauth" ,liboauth)
|
("liboauth" ,liboauth)
|
||||||
("rhash" ,rhash)
|
("rhash" ,rhash)
|
||||||
("tinyxml2" ,tinyxml2)
|
("tinyxml2" ,tinyxml2)
|
||||||
("zlib" ,zlib)))
|
("zlib" ,zlib)))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
`(("pkg-config" ,pkg-config)))
|
`(("pkg-config" ,pkg-config)))
|
||||||
(home-page "https://sites.google.com/site/gogdownloader/")
|
(home-page "https://sites.google.com/site/gogdownloader/")
|
||||||
(synopsis "Downloader for GOG.com files")
|
(synopsis "Downloader for GOG.com files")
|
||||||
(description "LGOGDownloader is a client for the GOG.com download API,
|
(description "LGOGDownloader is a client for the GOG.com download API,
|
||||||
allowing simple downloads and updates of games and other files from GOG.com.")
|
allowing simple downloads and updates of games and other files from GOG.com.")
|
||||||
(license license:wtfpl2)))
|
(license license:wtfpl2)))
|
||||||
|
|
||||||
(define-public htmlcxx
|
(define-public htmlcxx
|
||||||
(package
|
(package
|
||||||
|
|
|
@ -105,40 +105,40 @@ if your hardware is supported by one of the smaller firmware packages.")
|
||||||
|
|
||||||
(define-public ath3k-firmware
|
(define-public ath3k-firmware
|
||||||
(package
|
(package
|
||||||
(inherit linux-firmware)
|
(inherit linux-firmware)
|
||||||
(name "ath3k-firmware")
|
(name "ath3k-firmware")
|
||||||
(build-system trivial-build-system)
|
(build-system trivial-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:modules ((guix build utils))
|
`(#:modules ((guix build utils))
|
||||||
#:builder
|
#:builder
|
||||||
(begin
|
(begin
|
||||||
(use-modules (guix build utils))
|
(use-modules (guix build utils))
|
||||||
(let ((source (assoc-ref %build-inputs "source"))
|
(let ((source (assoc-ref %build-inputs "source"))
|
||||||
(fw-dir (string-append %output "/lib/firmware")))
|
(fw-dir (string-append %output "/lib/firmware")))
|
||||||
(mkdir-p fw-dir)
|
(mkdir-p fw-dir)
|
||||||
(for-each (lambda (file)
|
(for-each (lambda (file)
|
||||||
(copy-file (string-append source "/" file)
|
(copy-file (string-append source "/" file)
|
||||||
(string-append fw-dir "/" file)))
|
(string-append fw-dir "/" file)))
|
||||||
(list "ath3k-1.fw"
|
(list "ath3k-1.fw"
|
||||||
"LICENCE.atheros_firmware"
|
"LICENCE.atheros_firmware"
|
||||||
"LICENSE.QualcommAtheros_ar3k"
|
"LICENSE.QualcommAtheros_ar3k"
|
||||||
"WHENCE"))
|
"WHENCE"))
|
||||||
(copy-recursively (string-append source "/ar3k")
|
(copy-recursively (string-append source "/ar3k")
|
||||||
(string-append fw-dir "/ar3k"))
|
(string-append fw-dir "/ar3k"))
|
||||||
#t))))
|
#t))))
|
||||||
(synopsis "Nonfree firmware blobs for the ath3k Bluetooth driver")
|
(synopsis "Nonfree firmware blobs for the ath3k Bluetooth driver")
|
||||||
(description "Nonfree firmware blobs for the ath3k Bluetooth driver. ath3k
|
(description "Nonfree firmware blobs for the ath3k Bluetooth driver. ath3k
|
||||||
is the Linux Bluetooth driver for Atheros AR3011/AR3012 Bluetooth chipsets.")
|
is the Linux Bluetooth driver for Atheros AR3011/AR3012 Bluetooth chipsets.")
|
||||||
(license
|
(license
|
||||||
(list
|
(list
|
||||||
(nonfree
|
(nonfree
|
||||||
(string-append
|
(string-append
|
||||||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||||||
"/linux-firmware.git/plain/LICENCE.atheros_firmware"))
|
"/linux-firmware.git/plain/LICENCE.atheros_firmware"))
|
||||||
(nonfree
|
(nonfree
|
||||||
(string-append
|
(string-append
|
||||||
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
"https://git.kernel.org/pub/scm/linux/kernel/git/firmware"
|
||||||
"/linux-firmware.git/plain/LICENSE.QualcommAtheros_ar3k"))))))
|
"/linux-firmware.git/plain/LICENSE.QualcommAtheros_ar3k"))))))
|
||||||
|
|
||||||
(define-public iwlwifi-firmware
|
(define-public iwlwifi-firmware
|
||||||
(package
|
(package
|
||||||
|
@ -181,7 +181,7 @@ support for 5GHz and 802.11ac, among others.")
|
||||||
(uri (string-append "http://dlcdnet.asus.com/pub/ASUS/wireless/"
|
(uri (string-append "http://dlcdnet.asus.com/pub/ASUS/wireless/"
|
||||||
"USB-BT400/DR_USB_BT400_"
|
"USB-BT400/DR_USB_BT400_"
|
||||||
(string-filter (char-set-complement (char-set #\.))
|
(string-filter (char-set-complement (char-set #\.))
|
||||||
version)
|
version)
|
||||||
"_Windows.zip"))
|
"_Windows.zip"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
|
|
Loading…
Reference in a new issue