lol
1{ stdenv, fetchurl, intltool, pkgconfig, glib, libnotify, gtk3, libgee
2, keybinder3, json_glib, zeitgeist, vala_0_23, hicolor_icon_theme
3}:
4
5with stdenv.lib;
6
7stdenv.mkDerivation rec {
8 name = "synapse-0.2.99.1";
9
10 src = fetchurl {
11 url = "https://launchpad.net/synapse-project/0.3/0.2.99.1/+download/${name}.tar.xz";
12 sha256 = "846d8a5130580bb47c754bb7f20dc76311e589c00a18b02370a5d78b52409220";
13 };
14
15 buildInputs = [
16 intltool pkgconfig glib libnotify gtk3 libgee keybinder3 json_glib zeitgeist
17 vala_0_23 hicolor_icon_theme
18 ];
19
20 meta = {
21 longDescription = ''
22 Semantic launcher written in Vala that you can use to start applications
23 as well as find and access relevant documents and files by making use of
24 the Zeitgeist engine
25 '';
26 description = ''
27 Semantic launcher to start applications and find relevant files
28 '';
29 homepage = https://launchpad.net/synapse-project;
30 license = stdenv.lib.licenses.gpl3;
31 maintainers = with stdenv.lib.maintainers; mahe;
32 platforms = with stdenv.lib.platforms; all;
33 };
34}