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 {
|
2013-07-12 15:31:27 +02:00
|
|
|
name = "shared-desktop-ontologies-0.11.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";
|
2013-07-12 15:31:27 +02:00
|
|
|
sha256 = "1m5vnijg7rnwg41vig2ckg632dlczzdab1gsq51g4x7m9k1fdbw2";
|
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
|
|
|
|