2011-07-11 12:49:21 +02:00
|
|
|
{ stdenv, fetchurl, cmake }:
|
2010-02-10 17:01:55 +01:00
|
|
|
|
2010-07-18 00:11:59 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2012-08-08 10:59:38 +02:00
|
|
|
name = "shared-desktop-ontologies-0.10.0";
|
2011-07-11 12:49:21 +02:00
|
|
|
|
2010-02-10 17:01:55 +01:00
|
|
|
src = fetchurl {
|
2011-07-11 12:49:21 +02:00
|
|
|
url = "mirror://sourceforge/oscaf/${name}.tar.bz2";
|
2012-08-08 10:59:38 +02:00
|
|
|
sha256 = "00y55bjmxrwiiw8q0n0jcv95l945hp7nglbwj408sk5m2vq026di";
|
2010-02-10 17:01:55 +01:00
|
|
|
};
|
2011-07-11 12:49:21 +02:00
|
|
|
|
2010-02-10 17:01:55 +01:00
|
|
|
buildInputs = [ cmake ];
|
2011-07-11 12:49:21 +02:00
|
|
|
|
2010-07-18 00:11:59 +02:00
|
|
|
meta = with stdenv.lib; {
|
2012-01-14 19:04:34 +01:00
|
|
|
homepage = http://oscaf.sourceforge.net/;
|
2010-02-10 17:01:55 +01:00
|
|
|
description = "Ontologies necessary for the Nepomuk semantic desktop";
|
2010-07-18 00:11:59 +02:00
|
|
|
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 ];
|
2010-02-10 17:01:55 +01:00
|
|
|
};
|
|
|
|
}
|
2010-07-18 00:11:59 +02:00
|
|
|
|