mirror of
https://gitlab.com/nonguix/nonguix.git
synced 2025-10-02 02:14:59 +00:00
gcc-toolchain to get C++ libraries
This commit is contained in:
parent
5799d738e2
commit
ca159dfdf9
1 changed files with 20 additions and 4 deletions
|
@ -9,6 +9,7 @@
|
||||||
(define-module (nongnu packages messaging)
|
(define-module (nongnu packages messaging)
|
||||||
#:use-module (gnu packages base)
|
#:use-module (gnu packages base)
|
||||||
#:use-module (gnu packages bash)
|
#:use-module (gnu packages bash)
|
||||||
|
#:use-module (gnu packages commencement)
|
||||||
#:use-module (gnu packages compression)
|
#:use-module (gnu packages compression)
|
||||||
#:use-module (gnu packages cups)
|
#:use-module (gnu packages cups)
|
||||||
#:use-module (gnu packages fontutils)
|
#:use-module (gnu packages fontutils)
|
||||||
|
@ -154,7 +155,8 @@ or iOS.")
|
||||||
"eudev"
|
"eudev"
|
||||||
"expat"
|
"expat"
|
||||||
"fontconfig-minimal"
|
"fontconfig-minimal"
|
||||||
"gcc"
|
;; "gcc"
|
||||||
|
"gcc-toolchain"
|
||||||
"gdk-pixbuf"
|
"gdk-pixbuf"
|
||||||
"glib"
|
"glib"
|
||||||
"gtk+"
|
"gtk+"
|
||||||
|
@ -246,7 +248,8 @@ or iOS.")
|
||||||
(file-append (this-package-input pkg) "/lib"))
|
(file-append (this-package-input pkg) "/lib"))
|
||||||
'("fontconfig-minimal"
|
'("fontconfig-minimal"
|
||||||
"freetype"
|
"freetype"
|
||||||
"gcc"
|
;; "gcc"
|
||||||
|
"gcc-toolchain"
|
||||||
"gdk-pixbuf"
|
"gdk-pixbuf"
|
||||||
"glib"
|
"glib"
|
||||||
"libglvnd"
|
"libglvnd"
|
||||||
|
@ -296,7 +299,8 @@ or iOS.")
|
||||||
"expat"
|
"expat"
|
||||||
"fontconfig-minimal"
|
"fontconfig-minimal"
|
||||||
"freetype"
|
"freetype"
|
||||||
"gcc"
|
;; "gcc"
|
||||||
|
"gcc-toolchain"
|
||||||
"gdk-pixbuf"
|
"gdk-pixbuf"
|
||||||
"glib"
|
"glib"
|
||||||
"gtk+"
|
"gtk+"
|
||||||
|
@ -348,7 +352,8 @@ or iOS.")
|
||||||
"dbus"
|
"dbus"
|
||||||
"eudev"
|
"eudev"
|
||||||
"expat"
|
"expat"
|
||||||
"gcc"
|
;; "gcc"
|
||||||
|
"gcc-toolchain"
|
||||||
"gdk-pixbuf"
|
"gdk-pixbuf"
|
||||||
"glib"
|
"glib"
|
||||||
"mesa"
|
"mesa"
|
||||||
|
@ -424,7 +429,18 @@ or iOS.")
|
||||||
expat
|
expat
|
||||||
fontconfig
|
fontconfig
|
||||||
freetype
|
freetype
|
||||||
|
;; The gcc and `(,gcc "lib") package BOTH have the "gcc"
|
||||||
|
;; string key in the package inputs alist, and gcc's default
|
||||||
|
;; out package is found first.
|
||||||
|
;; We need to rename gcc's lib output so we can look it up
|
||||||
|
;; correctly later with (this-package-input pkg).
|
||||||
|
;; gcc is provided by the fact binary-build-system "inherits"
|
||||||
|
;; from gnu-build-system.
|
||||||
|
;; Using gcc-toolchain as a stopgap for now.
|
||||||
|
;; FIXME: Make gcc-lib output work, so we do not need to add
|
||||||
|
;; gcc-toolchain to Zoom's package closure.
|
||||||
`(,gcc "lib")
|
`(,gcc "lib")
|
||||||
|
gcc-toolchain
|
||||||
glib
|
glib
|
||||||
gtk+
|
gtk+
|
||||||
gdk-pixbuf
|
gdk-pixbuf
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue