1{ stdenv, fetchurl, cmake, qt4, kdelibs, soprano, automoc4, phonon, shared_desktop_ontologies }:
2stdenv.mkDerivation {
3 name = "semnotes-0.4.0-1";
4
5 src = fetchurl {
6 url = "mirror://sourceforge/semn/0.4.0/semnotes-0.4.0-1-src.tar.bz2";
7 sha256 = "1zh5jfh7pyhyz5fbzcgzyckdg0ny7sf8s16yy6rjw9n021zz5i7m";
8 };
9
10 buildInputs = [ cmake qt4 kdelibs automoc4 phonon soprano shared_desktop_ontologies ];
11
12 meta = with stdenv.lib; {
13 description = "Semantic note-taking tool for KDE based on Nepomuk-KDE";
14 longDescription = ''
15 SemNotes links notes to the data that is available on the user's desktop.
16 The data stored about a note consists of: a title, content, tags, creation
17 and last modification time. The notes and all the information about them
18 are stored as RDF resources in the Nepomuk repository. They are
19 automatically linked to the resources they reference.
20 '';
21 license = "GPL";
22 homepage = http://smile.deri.ie/projects/semn;
23 maintainers = [ maintainers.phreedom ];
24 platforms = platforms.linux;
25 };
26}