Author: egorochkin Date: 2010-06-20 12:54:42 +0000 (Sun, 20 Jun 2010) New Revision: 22340
You can view the changes in this commit at: https://svn.nixos.org/viewvc/nix?rev=22340&view=rev Added: nixpkgs/trunk/pkgs/applications/misc/semnotes/ nixpkgs/trunk/pkgs/applications/misc/semnotes/default.nix Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix Log: Addded SemNotes note-taking app Changes: Added: nixpkgs/trunk/pkgs/applications/misc/semnotes/default.nix =================================================================== --- nixpkgs/trunk/pkgs/applications/misc/semnotes/default.nix (rev 0) +++ nixpkgs/trunk/pkgs/applications/misc/semnotes/default.nix 2010-06-20 12:54:42 UTC (rev 22340) @@ -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 Modified: nixpkgs/trunk/pkgs/top-level/all-packages.nix =================================================================== --- nixpkgs/trunk/pkgs/top-level/all-packages.nix 2010-06-20 11:33:01 UTC (rev 22339) +++ nixpkgs/trunk/pkgs/top-level/all-packages.nix 2010-06-20 12:54:42 UTC (rev 22340) @@ -8595,6 +8595,11 @@ }; }; + semnotes = import ../applications/misc/semnotes { + inherit stdenv fetchurl cmake; + inherit (kde4) qt4 kdelibs automoc4 phonon soprano; + }; + skype_linux = import ../applications/networking/skype { inherit fetchurl stdenv; inherit alsaLib freetype fontconfig zlib; _______________________________________________ nix-commits mailing list [email protected] http://mail.cs.uu.nl/mailman/listinfo/nix-commits
