Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv, fetchurl, cmake }: 2 3stdenv.mkDerivation rec { 4 pname = "shared-desktop-ontologies"; 5 version = "0.11.0"; 6 7 src = fetchurl { 8 url = "mirror://sourceforge/oscaf/shared-desktop-ontologies-${version}.tar.bz2"; 9 sha256 = "1m5vnijg7rnwg41vig2ckg632dlczzdab1gsq51g4x7m9k1fdbw2"; 10 }; 11 12 nativeBuildInputs = [ cmake ]; 13 14 meta = with lib; { 15 homepage = "https://oscaf.sourceforge.net/"; 16 description = "Ontologies necessary for the Nepomuk semantic desktop"; 17 longDescription = '' 18 The shared-desktop-ontologies package brings the semantic web to the 19 desktop in terms of vocabulary. It contains the well known core 20 ontologies such as RDF and RDFS as well as the Nepomuk ontologies which 21 are used by projects like KDE or Strigi. 22 ''; 23 platforms = platforms.all; 24 maintainers = [ maintainers.sander ]; 25 }; 26}