Skip to content

Commit

Permalink
basex: 8.6.6 -> 9.4.3
Browse files Browse the repository at this point in the history
  • Loading branch information
leenaars authored and bjornfor committed Oct 8, 2020
1 parent 1d83d90 commit 21b9c04
Showing 1 changed file with 7 additions and 15 deletions.
22 changes: 7 additions & 15 deletions pkgs/tools/text/xml/basex/default.nix
Expand Up @@ -2,11 +2,11 @@

stdenv.mkDerivation rec {
pname = "basex";
version = "8.6.6";
version = "9.4.3";

src = fetchurl {
url = "http://files.basex.org/releases/${version}/BaseX866.zip";
sha256 = "1kws6swisdaa17yhijjvkh2ikwz9rd5cw8mdjvkqw6vlcp1nq6m4";
url = "http://files.basex.org/releases/${version}/BaseX${builtins.replaceStrings ["."] [""] version}.zip";
hash = "sha256-IZhRg2JcYQXQKU/lYZpLLcsSdjZZO+toY5yvk+RKUCY=";
};

buildInputs = [ unzip jre ];
Expand All @@ -25,23 +25,15 @@ stdenv.mkDerivation rec {
dontBuild = true;

installPhase = ''
mkdir -p "$out"
cp -r * "$out"
# Remove Windows batch files (unclutter $out/bin)
rm -f "$out"/bin/*.bat
rm ./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/"
mkdir -p $out/share/basex" "$out/share/applications"
# Remove empty directories
rmdir "$out/repo"
rmdir "$out/data"
cp -R bin etc lib webapp src BaseX.jar "$out"
cp -R readme.txt webapp "$out/share/basex"
# Install desktop file
mkdir -p "$out/share/applications"
cp "$desktopItem"/share/applications/* "$out/share/applications/"
# Use substitutions instead of wrapper scripts
Expand Down

0 comments on commit 21b9c04

Please sign in to comment.