synapse: 0.2.99.1 → 0.2.99.2

This commit is contained in:
Jan Tojnar 2017-12-19 06:28:35 +01:00
parent c2f3510eaf
commit dc8f184e9d
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4

View File

@ -1,35 +1,33 @@
{ stdenv, fetchurl, intltool, pkgconfig, glib, libnotify, gtk3, libgee { stdenv, fetchurl, intltool, pkgconfig, glib, libnotify, gtk3, libgee
, keybinder3, json_glib, zeitgeist, vala_0_23, hicolor_icon_theme , keybinder3, json_glib, zeitgeist, vala_0_34, hicolor_icon_theme
}: }:
with stdenv.lib; let
version = "0.2.99.2";
stdenv.mkDerivation rec { in stdenv.mkDerivation rec {
name = "synapse-0.2.99.1"; name = "synapse-${version}";
src = fetchurl { src = fetchurl {
url = "https://launchpad.net/synapse-project/0.3/0.2.99.1/+download/${name}.tar.xz"; url = "https://launchpad.net/synapse-project/0.3/${version}/+download/${name}.tar.xz";
sha256 = "846d8a5130580bb47c754bb7f20dc76311e589c00a18b02370a5d78b52409220"; sha256 = "04cnsmwf9xa52dh7rpb4ia715c0ls8jg1p7llc9yf3lbg1m0bvzv";
}; };
nativeBuildInputs = [ pkgconfig ]; nativeBuildInputs = [ pkgconfig intltool vala_0_34 ];
buildInputs = [ buildInputs = [
intltool glib libnotify gtk3 libgee keybinder3 json_glib zeitgeist glib libnotify gtk3 libgee keybinder3 json_glib zeitgeist
vala_0_23 hicolor_icon_theme hicolor_icon_theme
]; ];
meta = { meta = with stdenv.lib; {
longDescription = '' longDescription = ''
Semantic launcher written in Vala that you can use to start applications 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 as well as find and access relevant documents and files by making use of
the Zeitgeist engine the Zeitgeist engine
''; '';
description = '' description = "Semantic launcher to start applications and find relevant files";
Semantic launcher to start applications and find relevant files
'';
homepage = https://launchpad.net/synapse-project; homepage = https://launchpad.net/synapse-project;
license = stdenv.lib.licenses.gpl3; license = licenses.gpl3;
maintainers = with stdenv.lib.maintainers; [ mahe ]; maintainers = with maintainers; [ mahe ];
platforms = with stdenv.lib.platforms; all; platforms = with platforms; all;
}; };
} }