nixpkgs/pkgs/development/libraries/geoclue/default.nix

65 lines
1.8 KiB
Nix
Raw Normal View History

2018-12-03 12:18:43 +01:00
{ stdenv, fetchFromGitLab, intltool, meson, ninja, pkgconfig, gtk-doc, docbook_xsl, docbook_xml_dtd_412, glib, json-glib, libsoup, libnotify, gdk_pixbuf
, modemmanager, avahi, glib-networking, python3, wrapGAppsHook, gobject-introspection, vala
2018-07-21 02:44:15 +02:00
, withDemoAgent ? false
}:
2017-04-01 02:10:32 +02:00
with stdenv.lib;
stdenv.mkDerivation rec {
pname = "geoclue";
version = "2.5.2";
2018-11-30 23:14:39 +01:00
src = fetchFromGitLab {
domain = "gitlab.freedesktop.org";
owner = pname;
repo = pname;
2018-11-30 23:14:39 +01:00
rev = version;
sha256 = "1zk6n28q030a9v03whad928b9zwq16d30ch369qv2c0994axdr5p";
};
2018-12-20 18:46:05 +01:00
patches = [
./add-option-for-installation-sysconfdir.patch
];
2018-07-21 02:44:15 +02:00
outputs = [ "out" "dev" "devdoc" ];
2017-10-28 18:17:42 +02:00
nativeBuildInputs = [
pkgconfig intltool meson ninja wrapGAppsHook python3 vala gobject-introspection
2018-08-09 16:20:28 +02:00
# devdoc
gtk-doc docbook_xsl docbook_xml_dtd_412
];
2018-07-21 02:44:15 +02:00
buildInputs = [
glib json-glib libsoup avahi
] ++ optionals withDemoAgent [
libnotify gdk_pixbuf
] ++ optionals (!stdenv.isDarwin) [ modemmanager ];
propagatedBuildInputs = [ glib glib-networking ];
2018-11-30 23:14:39 +01:00
mesonFlags = [
"-Dsystemd-system-unit-dir=${placeholder "out"}/etc/systemd/system"
"-Ddemo-agent=${if withDemoAgent then "true" else "false"}"
2018-12-20 18:46:05 +01:00
"--sysconfdir=/etc"
"-Dsysconfdir_install=${placeholder "out"}/etc"
2018-07-21 02:44:15 +02:00
] ++ optionals stdenv.isDarwin [
2018-11-30 23:14:39 +01:00
"-D3g-source=false"
"-Dcdma-source=false"
"-Dmodem-gps-source=false"
"-Dnmea-source=false"
2018-07-21 02:44:15 +02:00
];
2017-04-01 02:10:32 +02:00
2018-11-30 23:14:39 +01:00
postPatch = ''
chmod +x demo/install-file.py
patchShebangs demo/install-file.py
'';
2016-03-09 04:17:17 +01:00
meta = with stdenv.lib; {
description = "Geolocation framework and some data providers";
2018-07-21 02:44:15 +02:00
homepage = https://gitlab.freedesktop.org/geoclue/geoclue/wikis/home;
2016-03-09 04:17:17 +01:00
maintainers = with maintainers; [ raskin garbas ];
2017-04-01 02:10:32 +02:00
platforms = with platforms; linux ++ darwin;
2016-03-09 04:17:17 +01:00
license = licenses.lgpl2;
};
}