4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
26 lines
818 B
Nix
26 lines
818 B
Nix
{ lib, stdenv, fetchurl, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "shared-desktop-ontologies-0.11.0";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/oscaf/${name}.tar.bz2";
|
|
sha256 = "1m5vnijg7rnwg41vig2ckg632dlczzdab1gsq51g4x7m9k1fdbw2";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
meta = with lib; {
|
|
homepage = "http://oscaf.sourceforge.net/";
|
|
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 ];
|
|
};
|
|
}
|