summary refs log tree commit diff
path: root/pkgs/development/libraries/zeitgeist
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-11-20 12:18:37 +0100
committerJan Tojnar <jtojnar@gmail.com>2019-11-20 12:21:53 +0100
commit30d8f65330dd017bb20c6936e1b92816dbd68e3c (patch)
tree3ac0c922e33867124b5b8b7c2038b264e526df98 /pkgs/development/libraries/zeitgeist
parentce75a06a4a2b243e21607d7195cde1a66f8d7185 (diff)
downloadnixpkgs-30d8f65330dd017bb20c6936e1b92816dbd68e3c.tar
nixpkgs-30d8f65330dd017bb20c6936e1b92816dbd68e3c.tar.gz
nixpkgs-30d8f65330dd017bb20c6936e1b92816dbd68e3c.tar.bz2
nixpkgs-30d8f65330dd017bb20c6936e1b92816dbd68e3c.tar.lz
nixpkgs-30d8f65330dd017bb20c6936e1b92816dbd68e3c.tar.xz
nixpkgs-30d8f65330dd017bb20c6936e1b92816dbd68e3c.tar.zst
nixpkgs-30d8f65330dd017bb20c6936e1b92816dbd68e3c.zip
zeitgeist: format with nixpkgs-fmt
Diffstat (limited to 'pkgs/development/libraries/zeitgeist')
-rw-r--r--pkgs/development/libraries/zeitgeist/default.nix62
1 files changed, 48 insertions, 14 deletions
diff --git a/pkgs/development/libraries/zeitgeist/default.nix b/pkgs/development/libraries/zeitgeist/default.nix
index 9e3b06453bf..b1e989055a3 100644
--- a/pkgs/development/libraries/zeitgeist/default.nix
+++ b/pkgs/development/libraries/zeitgeist/default.nix
@@ -1,7 +1,22 @@
-{ stdenv, fetchFromGitLab, pkgconfig, glib, sqlite, gobject-introspection, vala
-, autoconf, automake, libtool, gettext, dbus, telepathy-glib
-, gtk3, json-glib, librdf_raptor2, dbus-glib
-, pythonSupport ? true, python2Packages
+{ stdenv
+, fetchFromGitLab
+, pkgconfig
+, glib
+, sqlite
+, gobject-introspection
+, vala
+, autoconf
+, automake
+, libtool
+, gettext
+, dbus
+, telepathy-glib
+, gtk3
+, json-glib
+, librdf_raptor2
+, dbus-glib
+, pythonSupport ? true
+, python2Packages
 }:
 
 stdenv.mkDerivation rec {
@@ -18,31 +33,50 @@ stdenv.mkDerivation rec {
     sha256 = "0ig3d3j1n0ghaxsgfww6g2hhcdwx8cljwwfmp9jk1nrvkxd6rnmv";
   };
 
-  preConfigure = "NOCONFIGURE=1 ./autogen.sh";
-
-  configureFlags = [ "--with-session-bus-services-dir=${placeholder "out"}/share/dbus-1/services" ];
-
   nativeBuildInputs = [
-    autoconf automake libtool pkgconfig gettext gobject-introspection vala python2Packages.python
+    autoconf
+    automake
+    libtool
+    pkgconfig
+    gettext
+    gobject-introspection
+    vala
+    python2Packages.python
   ];
+
   buildInputs = [
-    glib sqlite dbus telepathy-glib dbus-glib
-    gtk3 json-glib librdf_raptor2 python2Packages.rdflib
+    glib
+    sqlite
+    dbus
+    telepathy-glib
+    dbus-glib
+    gtk3
+    json-glib
+    librdf_raptor2
+    python2Packages.rdflib
+  ];
+
+  configureFlags = [
+    "--with-session-bus-services-dir=${placeholder "out"}/share/dbus-1/services"
   ];
 
+  enableParallelBuilding = true;
+
   postPatch = ''
     patchShebangs data/ontology2code
   '';
 
-  enableParallelBuilding = true;
+  preConfigure = ''
+    NOCONFIGURE=1 ./autogen.sh
+  '';
 
   postFixup = stdenv.lib.optionalString pythonSupport ''
     moveToOutput lib/${python2Packages.python.libPrefix} "$py"
   '';
 
   meta = with stdenv.lib; {
-    description = "A service which logs the users's activities and events";
-    homepage = https://zeitgeist.freedesktop.org/;
+    description = "A service which logs the users’s activities and events";
+    homepage = "https://zeitgeist.freedesktop.org/";
     maintainers = with maintainers; [ lethalman worldofpeace ];
     license = licenses.gpl2;
     platforms = platforms.linux;