nixpkgs/pkgs/development/libraries/geoclue/default.nix
Linus Heckemann b73e3b6095 GNOME: 3.22 -> 3.24
This is a squash commit of the joint work from:

* Jan Tojnar (@jtojnar)
* Linus Heckemann (@lheckemann)
* Ryan Mulligan (@ryantm)
* romildo (@romildo)
* Tom Hunger (@teh)
2017-08-28 15:32:49 +01:00

34 lines
885 B
Nix

{ stdenv, fetchurl, dbus, dbus_glib, glib, pkgconfig, libxml2, gnome2,
libxslt, glib_networking }:
stdenv.mkDerivation rec {
name = "geoclue-0.12.0";
src = fetchurl {
url = "https://launchpad.net/geoclue/trunk/0.12/+download/${name}.tar.gz";
sha256 = "15j619kvmdgj2hpma92mkxbzjvgn8147a7500zl3bap9g8bkylqg";
};
buildInputs = [ pkgconfig libxml2 gnome2.GConf libxslt glib_networking ];
propagatedBuildInputs = [dbus glib dbus_glib];
hardeningDisable = [ "format" ];
preConfigure = ''
sed -e '/-Werror/d' -i configure
'';
meta = with stdenv.lib; {
description = "Geolocation framework and some data providers";
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
license = licenses.lgpl2;
};
passthru = {
updateInfo = {
downloadPage = "http://folks.o-hand.com/jku/geoclue-releases/";
};
};
}