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

59 lines
1.7 KiB
Nix
Raw Normal View History

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