1{ stdenv, fetchurl, cmake }:
2
3stdenv.mkDerivation rec {
4 name = "shared-desktop-ontologies-0.11.0";
5
6 src = fetchurl {
7 url = "mirror://sourceforge/oscaf/${name}.tar.bz2";
8 sha256 = "1m5vnijg7rnwg41vig2ckg632dlczzdab1gsq51g4x7m9k1fdbw2";
9 };
10
11 buildInputs = [ cmake ];
12
13 meta = with stdenv.lib; {
14 homepage = http://oscaf.sourceforge.net/;
15 description = "Ontologies necessary for the Nepomuk semantic desktop";
16 longDescription = ''
17 The shared-desktop-ontologies package brings the semantic web to the
18 desktop in terms of vocabulary. It contains the well known core
19 ontologies such as RDF and RDFS as well as the Nepomuk ontologies which
20 are used by projects like KDE or Strigi.
21 '';
22 platforms = platforms.all;
23 maintainers = [ maintainers.sander maintainers.urkud ];
24 };
25}
26