1 { lib, stdenv, fetchurl, cmake }:
3 stdenv.mkDerivation rec {
4 pname = "shared-desktop-ontologies";
8 url = "mirror://sourceforge/oscaf/shared-desktop-ontologies-${version}.tar.bz2";
9 sha256 = "1m5vnijg7rnwg41vig2ckg632dlczzdab1gsq51g4x7m9k1fdbw2";
12 nativeBuildInputs = [ cmake ];
15 homepage = "https://oscaf.sourceforge.net/";
16 description = "Ontologies necessary for the Nepomuk semantic desktop";
18 The shared-desktop-ontologies package brings the semantic web to the
19 desktop in terms of vocabulary. It contains the well known core
20 ontologies such as RDF and RDFS as well as the Nepomuk ontologies which
21 are used by projects like KDE or Strigi.
23 platforms = platforms.all;
24 maintainers = [ maintainers.sander ];