diodon: init at 1.13.0 (#369078)
[NixPkgs.git] / pkgs / by-name / sh / shared_desktop_ontologies / package.nix
blobf5aea74954704c36bfd59100a1006f5b96e6c454
2   lib,
3   stdenv,
4   fetchurl,
5   cmake,
6 }:
8 stdenv.mkDerivation rec {
9   pname = "shared-desktop-ontologies";
10   version = "0.11.0";
12   src = fetchurl {
13     url = "mirror://sourceforge/oscaf/shared-desktop-ontologies-${version}.tar.bz2";
14     sha256 = "1m5vnijg7rnwg41vig2ckg632dlczzdab1gsq51g4x7m9k1fdbw2";
15   };
17   nativeBuildInputs = [ cmake ];
19   meta = with lib; {
20     homepage = "https://oscaf.sourceforge.net/";
21     description = "Ontologies necessary for the Nepomuk semantic desktop";
22     longDescription = ''
23       The shared-desktop-ontologies package brings the semantic web to the
24       desktop in terms of vocabulary. It contains the well known core
25       ontologies such as RDF and RDFS as well as the Nepomuk ontologies which
26       are used by projects like KDE or Strigi.
27     '';
28     platforms = platforms.all;
29     maintainers = [ maintainers.sander ];
30   };