nixpkgs/pkgs/applications/misc/synapse/default.nix

38 lines
1.1 KiB
Nix
Raw Normal View History

2018-02-04 19:13:54 +00:00
{ stdenv, fetchurl, gettext, pkgconfig, glib, libnotify, gtk3, libgee
, 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-02-04 19:13:54 +00:00
version = "0.2.99.3";
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-02-04 19:13:54 +00:00
sha256 = "0rwd42164xqfi40r13yr29cx6zy3bckgxk00y53b376nl5yqacvy";
2015-07-18 12:48:09 +00:00
};
nativeBuildInputs = [
2018-02-04 19:13:54 +00:00
pkgconfig gettext vala_0_38
# For setup hook
gobjectIntrospection
];
2015-07-18 12:48:09 +00:00
buildInputs = [
2017-12-19 05:28:35 +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
};
}