9820cb1bf2
changes: * buildPhase = "true" * buildPhase = ":"
73 lines
2.3 KiB
Nix
73 lines
2.3 KiB
Nix
{ stdenv, fetchurl, unzip, jre, coreutils, makeDesktopItem }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "basex-8.3.1";
|
|
|
|
src = fetchurl {
|
|
url = "http://files.basex.org/releases/8.3.1/BaseX831.zip";
|
|
sha256 = "08ba0qvfaa1560hy0nsiq9y6slgdj46j9rdssigf2vvkc5ngkgg0";
|
|
};
|
|
|
|
buildInputs = [ unzip jre ];
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "basex";
|
|
exec = "basexgui %f";
|
|
icon = "${./basex.svg}"; # icon copied from Ubuntu basex package
|
|
comment = "Visually query and analyse your XML data";
|
|
desktopName = "BaseX XML Database";
|
|
genericName = "XML database tool";
|
|
categories = "Development;Utility;Database";
|
|
mimeType = "text/xml";
|
|
};
|
|
|
|
dontBuild = true;
|
|
|
|
installPhase = ''
|
|
mkdir -p "$out"
|
|
cp -r * "$out"
|
|
|
|
# Remove Windows batch files (unclutter $out/bin)
|
|
rm -f "$out"/bin/*.bat
|
|
|
|
# Move some top-level stuff to $out/share/basex (unclutter $out)
|
|
mkdir -p "$out/share/basex"
|
|
mv "$out"/*.txt "$out/share/basex/"
|
|
mv "$out"/webapp "$out/share/basex/"
|
|
|
|
# Remove empty directories
|
|
rmdir "$out/repo"
|
|
rmdir "$out/data"
|
|
|
|
# Install desktop file
|
|
mkdir -p "$out/share/applications"
|
|
cp "$desktopItem"/share/applications/* "$out/share/applications/"
|
|
|
|
# Use substitutions instead of wrapper scripts
|
|
for file in "$out"/bin/*; do
|
|
sed -i -e "s|/usr/bin/env bash|${stdenv.shell}|" \
|
|
-e "s|java|${jre}/bin/java|" \
|
|
-e "s|readlink|${coreutils}/bin/readlink|" \
|
|
-e "s|dirname|${coreutils}/bin/dirname|" \
|
|
-e "s|basename|${coreutils}/bin/basename|" \
|
|
-e "s|echo|${coreutils}/bin/echo|" \
|
|
"$file"
|
|
done
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "XML database and XPath/XQuery processor";
|
|
longDescription = ''
|
|
BaseX is a very fast and light-weight, yet powerful XML database and
|
|
XPath/XQuery processor, including support for the latest W3C Full Text
|
|
and Update Recommendations. It supports large XML instances and offers a
|
|
highly interactive front-end (basexgui). Apart from two local standalone
|
|
modes, BaseX offers a client/server architecture.
|
|
'';
|
|
homepage = http://basex.org/;
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|