5fe8b64cea
svn path=/nixpkgs/trunk/; revision=31566
27 lines
836 B
Nix
27 lines
836 B
Nix
{ stdenv, fetchurl, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "shared-desktop-ontologies-0.8.1";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/oscaf/${name}.tar.bz2";
|
|
sha256 = "0w6rhhfjl5r6gv2jw3nc1sj5l4fxz4s1wv0iclcrak3wa5vyy6h3";
|
|
};
|
|
|
|
buildInputs = [ cmake ];
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://oscaf.sourceforge.net/;
|
|
description = "Ontologies necessary for the Nepomuk semantic desktop";
|
|
longDescription = ''
|
|
The shared-desktop-ontologies package brings the semantic web to the
|
|
desktop in terms of vocabulary. It contains the well known core
|
|
ontologies such as RDF and RDFS as well as the Nepomuk ontologies which
|
|
are used by projects like KDE or Strigi.
|
|
'';
|
|
platforms = platforms.all;
|
|
maintainers = [ maintainers.sander maintainers.urkud ];
|
|
};
|
|
}
|
|
|