2021-01-15 22:18:51 +00:00
|
|
|
{ lib, stdenv, fetchurl, cmake }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2022-03-30 09:31:56 +00:00
|
|
|
pname = "shared-desktop-ontologies";
|
|
|
|
version = "0.11.0";
|
2021-01-15 22:18:51 +00:00
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
src = fetchurl {
|
2022-03-30 09:31:56 +00:00
|
|
|
url = "mirror://sourceforge/oscaf/shared-desktop-ontologies-${version}.tar.bz2";
|
2020-04-24 23:36:52 +00:00
|
|
|
sha256 = "1m5vnijg7rnwg41vig2ckg632dlczzdab1gsq51g4x7m9k1fdbw2";
|
|
|
|
};
|
2021-01-15 22:18:51 +00:00
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
meta = with lib; {
|
2023-02-02 18:25:31 +00:00
|
|
|
homepage = "https://oscaf.sourceforge.net/";
|
2020-04-24 23:36:52 +00:00
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|