btrbk: add mainProgram
[NixPkgs.git] / pkgs / by-name / sh / shared_desktop_ontologies / package.nix
blobfdbd2991cdeed7da079972d0b3b1277fa258ed59
1 { lib, stdenv, fetchurl, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "shared-desktop-ontologies";
5   version = "0.11.0";
7   src = fetchurl {
8     url = "mirror://sourceforge/oscaf/shared-desktop-ontologies-${version}.tar.bz2";
9     sha256 = "1m5vnijg7rnwg41vig2ckg632dlczzdab1gsq51g4x7m9k1fdbw2";
10   };
12   nativeBuildInputs = [ cmake ];
14   meta = with lib; {
15     homepage = "https://oscaf.sourceforge.net/";
16     description = "Ontologies necessary for the Nepomuk semantic desktop";
17     longDescription = ''
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.
22     '';
23     platforms = platforms.all;
24     maintainers = [ maintainers.sander ];
25   };