2018-02-04 11:13:54 -08:00
|
|
|
{ stdenv, fetchurl, gettext, pkgconfig, glib, libnotify, gtk3, libgee
|
2019-03-13 21:11:54 -07:00
|
|
|
, keybinder3, json-glib, zeitgeist, vala, hicolor-icon-theme, gobject-introspection
|
2015-07-18 05:48:09 -07:00
|
|
|
}:
|
|
|
|
|
2017-12-18 21:28:35 -08:00
|
|
|
let
|
2018-04-10 11:25:06 -07:00
|
|
|
version = "0.2.99.4";
|
2017-12-18 21:28:35 -08:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "synapse-${version}";
|
2015-07-18 05:48:09 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-12-18 21:28:35 -08:00
|
|
|
url = "https://launchpad.net/synapse-project/0.3/${version}/+download/${name}.tar.xz";
|
2018-04-10 11:25:06 -07:00
|
|
|
sha256 = "1g6x9knb4jy1d8zgssjhzkgac583137pibisy9whjs8mckaj4k1j";
|
2015-07-18 05:48:09 -07:00
|
|
|
};
|
|
|
|
|
2017-12-13 03:20:01 -08:00
|
|
|
nativeBuildInputs = [
|
2019-03-13 21:11:54 -07:00
|
|
|
pkgconfig gettext vala
|
2017-12-13 03:20:01 -08:00
|
|
|
# For setup hook
|
2018-12-02 03:41:15 -08:00
|
|
|
gobject-introspection
|
2017-12-13 03:20:01 -08:00
|
|
|
];
|
2015-07-18 05:48:09 -07:00
|
|
|
buildInputs = [
|
2018-02-24 18:23:58 -08:00
|
|
|
glib libnotify gtk3 libgee keybinder3 json-glib zeitgeist
|
|
|
|
hicolor-icon-theme
|
2015-07-18 05:48:09 -07:00
|
|
|
];
|
|
|
|
|
2017-12-18 21:28:35 -08:00
|
|
|
meta = with stdenv.lib; {
|
|
|
|
longDescription = ''
|
|
|
|
Semantic launcher written in Vala that you can use to start applications
|
|
|
|
as well as find and access relevant documents and files by making use of
|
|
|
|
the Zeitgeist engine
|
|
|
|
'';
|
|
|
|
description = "Semantic launcher to start applications and find relevant files";
|
|
|
|
homepage = https://launchpad.net/synapse-project;
|
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ mahe ];
|
|
|
|
platforms = with platforms; all;
|
2015-07-18 05:48:09 -07:00
|
|
|
};
|
|
|
|
}
|