2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake }:
|
2010-02-10 16:01:55 +00:00
|
|
|
|
2010-07-17 22:11:59 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2013-07-12 13:31:27 +00:00
|
|
|
name = "shared-desktop-ontologies-0.11.0";
|
2020-12-31 07:48:55 +00:00
|
|
|
|
2010-02-10 16:01:55 +00:00
|
|
|
src = fetchurl {
|
2011-07-11 10:49:21 +00:00
|
|
|
url = "mirror://sourceforge/oscaf/${name}.tar.bz2";
|
2013-07-12 13:31:27 +00:00
|
|
|
sha256 = "1m5vnijg7rnwg41vig2ckg632dlczzdab1gsq51g4x7m9k1fdbw2";
|
2010-02-10 16:01:55 +00:00
|
|
|
};
|
2020-12-31 07:48:55 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://oscaf.sourceforge.net/";
|
2010-02-10 16:01:55 +00:00
|
|
|
description = "Ontologies necessary for the Nepomuk semantic desktop";
|
2010-07-17 22:11:59 +00: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;
|
2017-03-27 17:11:17 +00:00
|
|
|
maintainers = [ maintainers.sander ];
|
2010-02-10 16:01:55 +00:00
|
|
|
};
|
|
|
|
}
|