summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2018-03-15 20:08:15 +0100
committerJan Tojnar <jtojnar@gmail.com>2018-03-22 07:46:57 +0100
commit72b3c4a9598a68579b5c65c64284b9fa91e1842b (patch)
treecb2b3ced4cdd33b2d3d51311313bbf1ef7460652 /pkgs
parent49d85d42b7e1f0ff22e4f000194ab3430d28efb8 (diff)
downloadnixpkgs-72b3c4a9598a68579b5c65c64284b9fa91e1842b.tar
nixpkgs-72b3c4a9598a68579b5c65c64284b9fa91e1842b.tar.gz
nixpkgs-72b3c4a9598a68579b5c65c64284b9fa91e1842b.tar.bz2
nixpkgs-72b3c4a9598a68579b5c65c64284b9fa91e1842b.tar.lz
nixpkgs-72b3c4a9598a68579b5c65c64284b9fa91e1842b.tar.xz
nixpkgs-72b3c4a9598a68579b5c65c64284b9fa91e1842b.tar.zst
nixpkgs-72b3c4a9598a68579b5c65c64284b9fa91e1842b.zip
geoclue2: build gir
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/development/libraries/geoclue/2.0.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/development/libraries/geoclue/2.0.nix b/pkgs/development/libraries/geoclue/2.0.nix
index 66aa3b4a218..b70163789de 100644
--- a/pkgs/development/libraries/geoclue/2.0.nix
+++ b/pkgs/development/libraries/geoclue/2.0.nix
@@ -1,5 +1,5 @@
 { fetchurl, stdenv, intltool, libintlOrEmpty, pkgconfig, glib, json-glib, libsoup, geoip
-, dbus, dbus-glib, modemmanager, avahi, glib-networking, wrapGAppsHook
+, dbus, dbus-glib, modemmanager, avahi, glib-networking, wrapGAppsHook, gobjectIntrospection
 }:
 
 with stdenv.lib;
@@ -15,7 +15,7 @@ stdenv.mkDerivation rec {
   outputs = [ "out" "dev" ];
 
   nativeBuildInputs = [
-    pkgconfig intltool wrapGAppsHook
+    pkgconfig intltool wrapGAppsHook gobjectIntrospection
   ];
 
   buildInputs = libintlOrEmpty ++
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
      substituteInPlace configure --replace "-Werror" ""
   '';
 
-  configureFlags = [ "--with-systemdsystemunitdir=$(out)/etc/systemd/system" ] ++
+  configureFlags = [ "--with-systemdsystemunitdir=$(out)/etc/systemd/system" "--enable-introspection" ] ++
                    optionals stdenv.isDarwin [
                        "--disable-silent-rules"
                        "--disable-3g-source"
@@ -45,6 +45,7 @@ stdenv.mkDerivation rec {
 
   meta = with stdenv.lib; {
     description = "Geolocation framework and some data providers";
+    homepage = https://freedesktop.org/wiki/Software/GeoClue/;
     maintainers = with maintainers; [ raskin garbas ];
     platforms = with platforms; linux ++ darwin;
     license = licenses.lgpl2;