2021-01-17 02:09:27 +00:00
|
|
|
{ lib, stdenv, fetchurl, gettext, pkg-config, glib, libnotify, gtk3, libgee
|
2019-09-12 15:25:05 +01:00
|
|
|
, keybinder3, json-glib, zeitgeist, vala, gobject-introspection
|
2015-07-18 13:48:09 +01:00
|
|
|
}:
|
|
|
|
|
2017-12-19 05:28:35 +00:00
|
|
|
let
|
2018-04-10 19:25:06 +01:00
|
|
|
version = "0.2.99.4";
|
2017-12-19 05:28:35 +00:00
|
|
|
in stdenv.mkDerivation rec {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "synapse";
|
|
|
|
inherit version;
|
2015-07-18 13:48:09 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-13 22:52:01 +01:00
|
|
|
url = "https://launchpad.net/synapse-project/0.3/${version}/+download/${pname}-${version}.tar.xz";
|
2018-04-10 19:25:06 +01:00
|
|
|
sha256 = "1g6x9knb4jy1d8zgssjhzkgac583137pibisy9whjs8mckaj4k1j";
|
2015-07-18 13:48:09 +01:00
|
|
|
};
|
|
|
|
|
2017-12-13 11:20:01 +00:00
|
|
|
nativeBuildInputs = [
|
2021-01-17 02:09:27 +00:00
|
|
|
pkg-config gettext vala
|
2017-12-13 11:20:01 +00:00
|
|
|
# For setup hook
|
2018-12-02 11:41:15 +00:00
|
|
|
gobject-introspection
|
2017-12-13 11:20:01 +00:00
|
|
|
];
|
2015-07-18 13:48:09 +01:00
|
|
|
buildInputs = [
|
2018-02-25 02:23:58 +00:00
|
|
|
glib libnotify gtk3 libgee keybinder3 json-glib zeitgeist
|
2015-07-18 13:48:09 +01:00
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-12-19 05:28:35 +00:00
|
|
|
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";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://launchpad.net/synapse-project";
|
2017-12-19 05:28:35 +00:00
|
|
|
license = licenses.gpl3;
|
|
|
|
maintainers = with maintainers; [ mahe ];
|
|
|
|
platforms = with platforms; all;
|
2015-07-18 13:48:09 +01:00
|
|
|
};
|
|
|
|
}
|