edf31cf5f1
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/apache-jena-fuseki/versions. These checks were done: - built on NixOS - ran ‘/nix/store/rvqwm2782sknhyqm8xf84k7lpr12l4fn-apache-jena-fuseki-3.7.0/bin/fuseki-server -h’ got 0 exit code - ran ‘/nix/store/rvqwm2782sknhyqm8xf84k7lpr12l4fn-apache-jena-fuseki-3.7.0/bin/fuseki-server --help’ got 0 exit code - ran ‘/nix/store/rvqwm2782sknhyqm8xf84k7lpr12l4fn-apache-jena-fuseki-3.7.0/bin/fuseki-server -v’ and found version 3.7.0 - found 3.7.0 with grep in /nix/store/rvqwm2782sknhyqm8xf84k7lpr12l4fn-apache-jena-fuseki-3.7.0 - directory tree listing: https://gist.github.com/83a0018e4eafbea41f4af26e953edc95
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 = "3.7.0";
|
|
name="${baseName}-${version}";
|
|
url="http://archive.apache.org/dist/jena/binaries/apache-jena-fuseki-${version}.tar.gz";
|
|
sha256 = "1824rvdrs9yhjinac2vkvkxvns8bfdvy91k5ghzzk0nrdcj31pmr";
|
|
};
|
|
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-default "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\$";
|
|
};
|
|
}
|