2018-02-04 19:13:54 +00:00
|
|
|
{ stdenv, fetchurl, gettext, pkgconfig, glib, libnotify, gtk3, libgee
|
2018-02-25 02:23:58 +00:00
|
|
|
, keybinder3, json-glib, zeitgeist, vala_0_38, hicolor-icon-theme, gobjectIntrospection
|
2015-07-18 12:48:09 +00:00
|
|
|
}:
|
|
|
|
|
2017-12-19 05:28:35 +00:00
|
|
|
let
|
2018-04-10 18:25:06 +00:00
|
|
|
version = "0.2.99.4";
|
2017-12-19 05:28:35 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
|
|
|
name = "synapse-${version}";
|
2015-07-18 12:48:09 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2017-12-19 05:28:35 +00:00
|
|
|
url = "https://launchpad.net/synapse-project/0.3/${version}/+download/${name}.tar.xz";
|
2018-04-10 18:25:06 +00:00
|
|
|
sha256 = "1g6x9knb4jy1d8zgssjhzkgac583137pibisy9whjs8mckaj4k1j";
|
2015-07-18 12:48:09 +00:00
|
|
|
};
|
|
|
|
|
2017-12-13 11:20:01 +00:00
|
|
|
nativeBuildInputs = [
|
2018-02-04 19:13:54 +00:00
|
|
|
pkgconfig gettext vala_0_38
|
2017-12-13 11:20:01 +00:00
|
|
|
# For setup hook
|
|
|
|
gobjectIntrospection
|
|
|
|
];
|
2015-07-18 12:48:09 +00:00
|
|
|
buildInputs = [
|
2018-02-25 02:23:58 +00:00
|
|
|
glib libnotify gtk3 libgee keybinder3 json-glib zeitgeist
|
|
|
|
hicolor-icon-theme
|
2015-07-18 12:48:09 +00:00
|
|
|
];
|
|
|
|
|
2017-12-19 05:28:35 +00: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 12:48:09 +00:00
|
|
|
};
|
|
|
|
}
|