about summary refs log tree commit diff
path: root/pkgs/applications/misc/semnotes
diff options
context:
space:
mode:
authorEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-06-20 12:54:42 +0000
committerEvgeny Egorochkin <phreedom.stdin@gmail.com>2010-06-20 12:54:42 +0000
commit4ef24c6cd62dac302bd30eae5a39b6b5783bb164 (patch)
tree6de3fc453d31e66f17aea47eb239d17bc530a572 /pkgs/applications/misc/semnotes
parentc4d7698f7f32eaffd4728876a7ed0f76d8d1df06 (diff)
downloadnixlib-4ef24c6cd62dac302bd30eae5a39b6b5783bb164.tar
nixlib-4ef24c6cd62dac302bd30eae5a39b6b5783bb164.tar.gz
nixlib-4ef24c6cd62dac302bd30eae5a39b6b5783bb164.tar.bz2
nixlib-4ef24c6cd62dac302bd30eae5a39b6b5783bb164.tar.lz
nixlib-4ef24c6cd62dac302bd30eae5a39b6b5783bb164.tar.xz
nixlib-4ef24c6cd62dac302bd30eae5a39b6b5783bb164.tar.zst
nixlib-4ef24c6cd62dac302bd30eae5a39b6b5783bb164.zip
Addded SemNotes note-taking app
svn path=/nixpkgs/trunk/; revision=22340
Diffstat (limited to 'pkgs/applications/misc/semnotes')
-rw-r--r--pkgs/applications/misc/semnotes/default.nix25
1 files changed, 25 insertions, 0 deletions
diff --git a/pkgs/applications/misc/semnotes/default.nix b/pkgs/applications/misc/semnotes/default.nix
new file mode 100644
index 000000000000..45060aecff89
--- /dev/null
+++ b/pkgs/applications/misc/semnotes/default.nix
@@ -0,0 +1,25 @@
+{ stdenv, fetchurl, cmake, qt4, kdelibs, soprano, automoc4, phonon }:
+stdenv.mkDerivation {
+  name = "semnotes-0.4.0-1";
+
+  src = fetchurl {
+    url = "mirror://sf/semn/0.4.0/semnotes-0.4.0-1-src.tar.bz2";
+    sha256 = "1zh5jfh7pyhyz5fbzcgzyckdg0ny7sf8s16yy6rjw9n021zz5i7m";
+  };
+
+  buildInputs = [ cmake qt4 kdelibs automoc4 phonon soprano ];
+
+  meta = with stdenv.lib; {
+    description = "Semantic note-taking tool for KDE based on Nepomuk-KDE";
+    longDescription = ''
+      SemNotes links notes to the data that is available on the user's desktop.
+      The data stored about a note consists of: a title, content, tags, creation
+      and last modification time. The notes and all the information about them
+      are stored as RDF resources in the Nepomuk repository. They are
+      automatically linked to the resources they reference.
+    '';
+    license = "GPL";
+    homepage = http://smile.deri.ie/projects/semn;
+    maintainers = [ maintainers.phreedom ];
+  };
+}
\ No newline at end of file