synapse: init at 0.2.99.1

authored by Matthias Herrmann and committed by Matthias Herrmann 679a941f 166aed12

+39
+1
lib/maintainers.nix
··· 147 ludo = "Ludovic Courtès <ludo@gnu.org>"; 148 madjar = "Georges Dubus <georges.dubus@compiletoi.net>"; 149 magnetophon = "Bart Brouns <bart@magnetophon.nl>"; 150 malyn = "Michael Alyn Miller <malyn@strangeGizmo.com>"; 151 manveru = "Michael Fellinger <m.fellinger@gmail.com>"; 152 marcweber = "Marc Weber <marco-oweber@gmx.de>";
··· 147 ludo = "Ludovic Courtès <ludo@gnu.org>"; 148 madjar = "Georges Dubus <georges.dubus@compiletoi.net>"; 149 magnetophon = "Bart Brouns <bart@magnetophon.nl>"; 150 + mahe = "Matthias Herrmann <matthias.mh.herrmann@gmail.com>"; 151 malyn = "Michael Alyn Miller <malyn@strangeGizmo.com>"; 152 manveru = "Michael Fellinger <m.fellinger@gmail.com>"; 153 marcweber = "Marc Weber <marco-oweber@gmx.de>";
+34
pkgs/applications/misc/synapse/default.nix
···
··· 1 + { stdenv, fetchurl, intltool, pkgconfig, glib, libnotify, gtk3, libgee 2 + , keybinder3, json_glib, zeitgeist, vala 3 + }: 4 + 5 + with stdenv.lib; 6 + 7 + stdenv.mkDerivation rec { 8 + name = "synapse-0.2.99.1"; 9 + 10 + src = fetchurl { 11 + url = "https://launchpad.net/synapse-project/0.3/0.2.99.1/+download/${name}.tar.xz"; 12 + sha256 = "846d8a5130580bb47c754bb7f20dc76311e589c00a18b02370a5d78b52409220"; 13 + }; 14 + 15 + buildInputs = [ 16 + intltool pkgconfig glib libnotify gtk3 libgee keybinder3 json_glib zeitgeist 17 + vala 18 + ]; 19 + 20 + meta = { 21 + longDescription = '' 22 + Semantic launcher written in Vala that you can use to start applications 23 + as well as find and access relevant documents and files by making use of 24 + the Zeitgeist engine 25 + ''; 26 + description = '' 27 + Semantic launcher to start applications and find relevant files 28 + ''; 29 + homepage = https://launchpad.net/synapse-project; 30 + license = stdenv.lib.licenses.gpl3; 31 + maintainers = with stdenv.lib.maintainers; mahe; 32 + platforms = with stdenv.lib.platforms; all; 33 + }; 34 + }
+4
pkgs/top-level/all-packages.nix
··· 12161 ruby = ruby_1_9_3.override { cursesSupport = true; }; 12162 }; 12163 12164 synfigstudio = callPackage ../applications/graphics/synfigstudio { 12165 fontsConf = makeFontsConf { fontDirectories = [ freefont_ttf ]; }; 12166 };
··· 12161 ruby = ruby_1_9_3.override { cursesSupport = true; }; 12162 }; 12163 12164 + synapse = callPackage ../applications/misc/synapse { 12165 + inherit (gnome3) libgee; 12166 + }; 12167 + 12168 synfigstudio = callPackage ../applications/graphics/synfigstudio { 12169 fontsConf = makeFontsConf { fontDirectories = [ freefont_ttf ]; }; 12170 };