me
/
guix
Archived
1
0
Fork 0

gnu: Move pkg-config to native inputs.

* gnu/packages/glib.scm (gobject-introspection)[native-inputs]: Move
pkg-config from inputs.
* gnu/packages/pulseaudio.scm (libsndfile, libsamplerate)
(pulseaudio)[native-inputs]: Likewise.
master
Mathieu Lirzin 2015-12-06 17:12:14 +01:00
parent e414a7dec3
commit d7e92b8752
2 changed files with 9 additions and 6 deletions

View File

@ -227,10 +227,10 @@ dynamic loading, and an object system.")
("cairo" ,cairo) ("cairo" ,cairo)
("flex" ,flex) ("flex" ,flex)
("glib" ,glib) ("glib" ,glib)
("pkg-config" ,pkg-config)
("python-2" ,python-2))) ("python-2" ,python-2)))
(native-inputs (native-inputs
`(("glib" ,glib "bin"))) `(("glib" ,glib "bin")
("pkg-config" ,pkg-config)))
(propagated-inputs (propagated-inputs
`(;; In practice, GIR users will need libffi when using `(;; In practice, GIR users will need libffi when using
;; gobject-introspection. ;; gobject-introspection.

View File

@ -55,8 +55,9 @@
(inputs (inputs
`(("libvorbis" ,libvorbis) `(("libvorbis" ,libvorbis)
("libogg" ,libogg) ("libogg" ,libogg)
("flac" ,flac) ("flac" ,flac)))
("pkg-config" ,pkg-config))) (native-inputs
`(("pkg-config" ,pkg-config)))
(home-page "http://www.mega-nerd.com/libsndfile/") (home-page "http://www.mega-nerd.com/libsndfile/")
(synopsis "Reading and writing files containing sampled sound") (synopsis "Reading and writing files containing sampled sound")
(description (description
@ -84,7 +85,8 @@ for reading and writing new sound file formats.")
(base32 (base32
"01hw5xjbjavh412y63brcslj5hi9wdgkjd3h9csx5rnm8vglpdck")))) "01hw5xjbjavh412y63brcslj5hi9wdgkjd3h9csx5rnm8vglpdck"))))
(build-system gnu-build-system) (build-system gnu-build-system)
(inputs `(("pkg-config" ,pkg-config))) (native-inputs
`(("pkg-config" ,pkg-config)))
(propagated-inputs (propagated-inputs
`(("libsndfile" ,libsndfile) `(("libsndfile" ,libsndfile)
("fftw" ,fftw))) ("fftw" ,fftw)))
@ -159,13 +161,14 @@ rates.")
("dbus" ,dbus) ("dbus" ,dbus)
("glib" ,glib) ("glib" ,glib)
("intltool" ,intltool) ("intltool" ,intltool)
("pkg-config" ,pkg-config)
("m4" ,m4) ("m4" ,m4)
("libltdl" ,libltdl) ("libltdl" ,libltdl)
("fftwf" ,fftwf) ("fftwf" ,fftwf)
("avahi" ,avahi) ("avahi" ,avahi)
("eudev" ,eudev) ;for the detection of hardware audio devices ("eudev" ,eudev) ;for the detection of hardware audio devices
("check" ,check))) ("check" ,check)))
(native-inputs
`(("pkg-config" ,pkg-config)))
(propagated-inputs (propagated-inputs
;; 'libpulse*.la' contain `-lgdbm' and `-lcap', so propagate them. ;; 'libpulse*.la' contain `-lgdbm' and `-lcap', so propagate them.
`(("libcap" ,libcap) `(("libcap" ,libcap)