2013-10-29 15:23:24 +00:00
|
|
|
{ fetchurl, stdenv, intltool, pkgconfig, glib, json_glib, libsoup, geoip
|
2015-12-12 13:26:46 +00:00
|
|
|
, dbus, dbus_glib, modemmanager, avahi
|
2013-10-29 15:23:24 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2016-04-11 17:40:03 +00:00
|
|
|
name = "geoclue-2.4.3";
|
2013-10-29 15:23:24 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2015-12-12 13:26:46 +00:00
|
|
|
url = "http://www.freedesktop.org/software/geoclue/releases/2.4/${name}.tar.xz";
|
2016-04-11 17:40:03 +00:00
|
|
|
sha256 = "0pk07k65dlw37nz8z5spksivsv5nh96xmbi336rf2yfxf2ldpadd";
|
2013-10-29 15:23:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs =
|
|
|
|
[ intltool pkgconfig glib json_glib libsoup geoip
|
2015-12-12 13:26:46 +00:00
|
|
|
dbus dbus_glib modemmanager avahi
|
2013-10-29 15:23:24 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
substituteInPlace configure --replace "-Werror" ""
|
|
|
|
'';
|
|
|
|
|
2015-04-10 15:02:57 +00:00
|
|
|
configureFlags = [ "--with-systemdsystemunitdir=$(out)/etc/systemd/system" ];
|
|
|
|
|
2013-10-29 15:23:24 +00:00
|
|
|
propagatedBuildInputs = [ dbus dbus_glib glib ];
|
|
|
|
|
2016-03-09 03:17:17 +00:00
|
|
|
meta = with stdenv.lib; {
|
2013-10-29 15:23:24 +00:00
|
|
|
description = "Geolocation framework and some data providers";
|
2016-03-09 03:17:17 +00:00
|
|
|
maintainers = with maintainers; [ raskin garbas ];
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.lgpl2;
|
2013-10-29 15:23:24 +00:00
|
|
|
};
|
|
|
|
}
|