zeitgeist: 1.0.1 -> 1.0.2

This commit is contained in:
worldofpeace 2019-02-01 20:55:58 -05:00
parent ece22b62bb
commit bdc7003439

View File

@ -5,22 +5,22 @@
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
version = "1.0.1"; pname = "zeitgeist";
name = "zeitgeist-${version}"; version = "1.0.2";
outputs = [ "out" "lib" "dev" "man" ] ++ stdenv.lib.optional pythonSupport "py"; outputs = [ "out" "lib" "dev" "man" ] ++ stdenv.lib.optional pythonSupport "py";
src = fetchFromGitLab { src = fetchFromGitLab {
domain = "gitlab.freedesktop.org"; domain = "gitlab.freedesktop.org";
owner = "zeitgeist"; owner = pname;
repo = "zeitgeist"; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "1lgqcqr5h9ba751b7ajp7h2w1bb5qza2w3k1f95j3ab15p7q0q44"; sha256 = "0ig3d3j1n0ghaxsgfww6g2hhcdwx8cljwwfmp9jk1nrvkxd6rnmv";
}; };
preConfigure = "NOCONFIGURE=1 ./autogen.sh"; preConfigure = "NOCONFIGURE=1 ./autogen.sh";
configureFlags = [ "--with-session-bus-services-dir=$(out)/share/dbus-1/services" ]; configureFlags = [ "--with-session-bus-services-dir=${placeholder ''out''}/share/dbus-1/services" ];
nativeBuildInputs = [ nativeBuildInputs = [
autoconf automake libtool pkgconfig gettext gobject-introspection vala python2Packages.python autoconf automake libtool pkgconfig gettext gobject-introspection vala python2Packages.python
@ -42,8 +42,8 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "A service which logs the users's activities and events"; description = "A service which logs the users's activities and events";
homepage = http://zeitgeist.freedesktop.org/; homepage = https://zeitgeist.freedesktop.org/;
maintainers = with maintainers; [ lethalman ]; maintainers = with maintainers; [ lethalman worldofpeace ];
license = licenses.gpl2; license = licenses.gpl2;
platforms = platforms.linux; platforms = platforms.linux;
}; };