gmpc: mpd_clientlib -> libmpdclient
This commit is contained in:
parent
d975831696
commit
a669924b07
|
@ -1,6 +1,22 @@
|
||||||
{ lib, stdenv, fetchurl, libtool, intltool, pkg-config, glib
|
{ lib
|
||||||
, gtk2, curl, mpd_clientlib, libsoup, gob2, vala, libunique
|
, stdenv
|
||||||
, libSM, libICE, sqlite, hicolor-icon-theme, wrapGAppsHook
|
, fetchurl
|
||||||
|
, libtool
|
||||||
|
, intltool
|
||||||
|
, pkg-config
|
||||||
|
, glib
|
||||||
|
, gtk2
|
||||||
|
, curl
|
||||||
|
, libmpdclient
|
||||||
|
, libsoup
|
||||||
|
, gob2
|
||||||
|
, vala
|
||||||
|
, libunique
|
||||||
|
, libSM
|
||||||
|
, libICE
|
||||||
|
, sqlite
|
||||||
|
, hicolor-icon-theme
|
||||||
|
, wrapGAppsHook
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
|
@ -26,8 +42,17 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config libtool intltool gob2 vala wrapGAppsHook ];
|
nativeBuildInputs = [ pkg-config libtool intltool gob2 vala wrapGAppsHook ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib gtk2 curl mpd_clientlib libsoup
|
glib
|
||||||
libunique libmpd libSM libICE sqlite hicolor-icon-theme
|
gtk2
|
||||||
|
curl
|
||||||
|
libmpdclient
|
||||||
|
libsoup
|
||||||
|
libunique
|
||||||
|
libmpd
|
||||||
|
libSM
|
||||||
|
libICE
|
||||||
|
sqlite
|
||||||
|
hicolor-icon-theme
|
||||||
];
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
|
@ -38,3 +63,4 @@ stdenv.mkDerivation rec {
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
# TODO: what is this libmpd derivation embedded above?
|
||||||
|
|
Loading…
Reference in New Issue