mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2025-01-09 23:51:43 +01:00
nongnu: steam: Use manifest for propagated inputs.
* nongnu/packages/steam-client.scm (steam)[propagated-inputs]: Remove. [arguments]: Add former propagated-inputs to manifest.scm and fix quoting in store-item->manifest-entry output.
This commit is contained in:
parent
e098cd4277
commit
4339e68cfb
1 changed files with 4 additions and 6 deletions
|
@ -334,10 +334,6 @@ in the Guix store"
|
||||||
("steam-libs-64" ,steam-libs-64)
|
("steam-libs-64" ,steam-libs-64)
|
||||||
("steam-ld.so.conf" ,steam-ld.so.conf)
|
("steam-ld.so.conf" ,steam-ld.so.conf)
|
||||||
("steam-ld.so.cache" ,steam-ld.so.cache)))
|
("steam-ld.so.cache" ,steam-ld.so.cache)))
|
||||||
(propagated-inputs
|
|
||||||
;; GMod segfaults if it doesn't find these fonts.
|
|
||||||
`(("font-liberation" ,font-liberation)
|
|
||||||
("font-dejavu" ,font-dejavu)))
|
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
`(#:tests? #f
|
||||||
|
@ -401,7 +397,7 @@ in the Guix store"
|
||||||
(write-file
|
(write-file
|
||||||
manifest-path
|
manifest-path
|
||||||
`((use-package-modules
|
`((use-package-modules
|
||||||
base certs compression file gawk gnome linux)
|
base certs compression file fonts gawk gnome linux)
|
||||||
(use-modules (guix utils)
|
(use-modules (guix utils)
|
||||||
(guix profiles)
|
(guix profiles)
|
||||||
(guix store)
|
(guix store)
|
||||||
|
@ -416,7 +412,7 @@ in the Guix store"
|
||||||
(manifest-entry
|
(manifest-entry
|
||||||
(name name)
|
(name name)
|
||||||
(version version)
|
(version version)
|
||||||
(output ,out) ;XXX: wild guess
|
(output "out") ;XXX: wild guess
|
||||||
(item item))))
|
(item item))))
|
||||||
|
|
||||||
(manifest-add
|
(manifest-add
|
||||||
|
@ -425,6 +421,8 @@ in the Guix store"
|
||||||
diffutils
|
diffutils
|
||||||
file
|
file
|
||||||
findutils
|
findutils
|
||||||
|
font-dejavu
|
||||||
|
font-liberation
|
||||||
gawk
|
gawk
|
||||||
glibc-locales
|
glibc-locales
|
||||||
grep
|
grep
|
||||||
|
|
Loading…
Reference in a new issue