f5fa5fa4d6
* pkgs: refactor needless quoting of homepage meta attribute A lot of packages are needlessly quoting the homepage meta attribute (about 1400, 22%), this commit refactors all of those instances. * pkgs: Fixing some links that were wrongfully unquoted in the previous commit * Fixed some instances
42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{stdenv, fetchurl, java, makeWrapper}:
|
|
let
|
|
s = # Generated upstream information
|
|
rec {
|
|
baseName="apache-jena-fuseki";
|
|
version = "2.5.0";
|
|
name="${baseName}-${version}";
|
|
url="http://archive.apache.org/dist/jena/binaries/apache-jena-fuseki-${version}.tar.gz";
|
|
sha256 = "0qkdpifv30138y7d6vj0dksk4fbgcnwl26dqm89q0d66sc0czfbv";
|
|
};
|
|
buildInputs = [
|
|
makeWrapper
|
|
];
|
|
in
|
|
stdenv.mkDerivation {
|
|
inherit (s) name version;
|
|
inherit buildInputs;
|
|
src = fetchurl {
|
|
inherit (s) url sha256;
|
|
};
|
|
installPhase = ''
|
|
cp -r . "$out"
|
|
ln -s "$out"/{fuseki-server,fuseki} "$out/bin"
|
|
for i in "$out"/bin/*; do
|
|
wrapProgram "$i" \
|
|
--prefix "PATH" : "${java}/bin/" \
|
|
--set "FUSEKI_HOME" '"''${FUSEKI_HOME:-'"$out"'}"' \
|
|
;
|
|
done
|
|
'';
|
|
meta = {
|
|
inherit (s) version;
|
|
description = ''SPARQL server'';
|
|
license = stdenv.lib.licenses.asl20;
|
|
maintainers = [stdenv.lib.maintainers.raskin];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
homepage = http://jena.apache.org;
|
|
downloadPage = "http://archive.apache.org/dist/jena/binaries/";
|
|
downloadURLRegexp = "apache-jena-fuseki-.*[.]tar[.]gz\$";
|
|
};
|
|
}
|