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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, gettext, pkg-config, glib, libnotify, gtk3, libgee
, keybinder3, json-glib, zeitgeist, vala, gobject-introspection
2015-07-18 12:48:09 +00:00
}:
2017-12-19 05:28:35 +00:00
let
version = "0.2.99.4";
2017-12-19 05:28:35 +00:00
in stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "synapse";
inherit version;
2015-07-18 12:48:09 +00:00
src = fetchurl {
2019-08-13 21:52:01 +00:00
url = "https://launchpad.net/synapse-project/0.3/${version}/+download/${pname}-${version}.tar.xz";
sha256 = "1g6x9knb4jy1d8zgssjhzkgac583137pibisy9whjs8mckaj4k1j";
2015-07-18 12:48:09 +00:00
};
nativeBuildInputs = [
pkg-config gettext vala
# For setup hook
gobject-introspection
];
2015-07-18 12:48:09 +00:00
buildInputs = [
glib libnotify gtk3 libgee keybinder3 json-glib zeitgeist
2015-07-18 12:48:09 +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";
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;
2024-02-11 02:19:15 +00:00
mainProgram = "synapse";
2015-07-18 12:48:09 +00:00
};
}