mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
gmpc: Fix compilation errors (missing X libs)
This commit is contained in:
parent
236f5686af
commit
90d6146d12
|
@ -1,5 +1,6 @@
|
|||
{ stdenv, fetchurl, libtool, intltool, pkgconfig, glib
|
||||
, gtk, curl, mpd_clientlib, libsoup, gob2, vala, libunique
|
||||
, libSM, libICE
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
|
@ -22,7 +23,7 @@ stdenv.mkDerivation rec {
|
|||
|
||||
buildInputs = [
|
||||
libtool intltool pkgconfig glib gtk curl mpd_clientlib libsoup
|
||||
libunique libmpd gob2 vala
|
||||
libunique libmpd gob2 vala libSM libICE
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
|
|
|
@ -9589,7 +9589,9 @@ let
|
|||
|
||||
gqview = callPackage ../applications/graphics/gqview { };
|
||||
|
||||
gmpc = callPackage ../applications/audio/gmpc { };
|
||||
gmpc = callPackage ../applications/audio/gmpc {
|
||||
inherit (xlibs) libSM libICE;
|
||||
};
|
||||
|
||||
gmtk = callPackage ../applications/networking/browsers/mozilla-plugins/gmtk {
|
||||
inherit (gnome) GConf;
|
||||
|
|
Loading…
Reference in a new issue