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