gnu: gstreamer: Add search path specification for 'GST_PLUGIN_SYSTEM_PATH'.
This reverts commit e53fc0c8a
, which add it wrongly to gst-plugins-base.
* gnu/packages/gstreamer.scm (gstreamer)[native-search-paths]: New field.
(gst-plugins-base)[native-search-paths]: Remove.
This commit is contained in:
parent
ff986890ec
commit
96693d1d92
|
@ -109,6 +109,10 @@ arrays of data.")
|
||||||
("perl" ,perl)
|
("perl" ,perl)
|
||||||
("pkg-config" ,pkg-config)
|
("pkg-config" ,pkg-config)
|
||||||
("python-wrapper" ,python-wrapper)))
|
("python-wrapper" ,python-wrapper)))
|
||||||
|
(native-search-paths
|
||||||
|
(list (search-path-specification
|
||||||
|
(variable "GST_PLUGIN_SYSTEM_PATH")
|
||||||
|
(files '("lib/gstreamer-1.0")))))
|
||||||
(home-page "http://gstreamer.freedesktop.org/")
|
(home-page "http://gstreamer.freedesktop.org/")
|
||||||
(synopsis "Multimedia library")
|
(synopsis "Multimedia library")
|
||||||
(description
|
(description
|
||||||
|
@ -171,10 +175,6 @@ This package provides the core library and elements.")
|
||||||
;; for g-ir-scanner.
|
;; for g-ir-scanner.
|
||||||
(setenv "CC" "gcc"))
|
(setenv "CC" "gcc"))
|
||||||
%standard-phases)))
|
%standard-phases)))
|
||||||
(native-search-paths
|
|
||||||
(list (search-path-specification
|
|
||||||
(variable "GST_PLUGIN_SYSTEM_PATH")
|
|
||||||
(files '("lib/gstreamer-1.0")))))
|
|
||||||
(home-page "http://gstreamer.freedesktop.org/")
|
(home-page "http://gstreamer.freedesktop.org/")
|
||||||
(synopsis
|
(synopsis
|
||||||
"Plugins for the GStreamer multimedia library")
|
"Plugins for the GStreamer multimedia library")
|
||||||
|
|
Loading…
Reference in New Issue