diff options
author | Marius Bakke <mbakke@fastmail.com> | 2019-04-16 20:57:31 +0200 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2019-04-16 21:19:34 +0200 |
commit | a2d2c0bffe08e40dad46f557d36d2261c077ef43 (patch) | |
tree | 1cb02097716fdc9ed9f1df89519b0554eb509c55 /gnu/packages/spice.scm | |
parent | 97b321a69ca791e39effd99974596ffa26fd9f0e (diff) | |
download | patches-a2d2c0bffe08e40dad46f557d36d2261c077ef43.tar patches-a2d2c0bffe08e40dad46f557d36d2261c077ef43.tar.gz |
gnu: spice-gtk: Propagate required inputs.
* gnu/packages/spice.scm (spice-gtk)[inputs]: Move GTK+, PIXMAN and OPENSSL ...
[propagated-inputs]: ... here.
(virt-viewer)[inputs]: Remove OPENSSL.
Diffstat (limited to 'gnu/packages/spice.scm')
-rw-r--r-- | gnu/packages/spice.scm | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/gnu/packages/spice.scm b/gnu/packages/spice.scm index e9e9042bd1..3a8c5a5d85 100644 --- a/gnu/packages/spice.scm +++ b/gnu/packages/spice.scm @@ -134,20 +134,22 @@ which allows users to view a desktop computing environment.") ("gst-plugins-good" ,gst-plugins-good) ("gst-plugins-bad" ,gst-plugins-bad) ("gst-plugins-ugly" ,gst-plugins-ugly) - ("spice-protocol" ,spice-protocol))) + ("spice-protocol" ,spice-protocol) + + ;; These are required by the pkg-config files. + ("gtk+" ,gtk+) + ("pixman" ,pixman) + ("openssl" ,openssl))) (inputs `(("glib-networking" ,glib-networking) ("gobject-introspection" ,gobject-introspection) - ("gtk+" ,gtk+) ("libepoxy" ,libepoxy) ("libjpeg" ,libjpeg) ("libxcb" ,libxcb) ("lz4" ,lz4) ("mesa" ,mesa) - ("pixman" ,pixman) ("pulseaudio" ,pulseaudio) ("python" ,python) - ("openssl" ,openssl) ("opus" ,opus) ("usbredir" ,usbredir))) (native-inputs @@ -291,7 +293,6 @@ resolution scaling on graphical console window resize.") `(("gtk+" ,gtk+) ("libcap" ,libcap) ("libxml2" ,libxml2) - ("openssl" ,openssl) ("spice-gtk" ,spice-gtk))) (native-inputs `(("glib:bin" ,glib "bin") |