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
66 lines
2.1 KiB
Nix
66 lines
2.1 KiB
Nix
{ lib, stdenv, fetchurl, unzip, jre, coreutils, makeDesktopItem }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "basex";
|
|
version = "9.4.3";
|
|
|
|
src = fetchurl {
|
|
url = "http://files.basex.org/releases/${version}/BaseX${builtins.replaceStrings ["."] [""] version}.zip";
|
|
hash = "sha256-IZhRg2JcYQXQKU/lYZpLLcsSdjZZO+toY5yvk+RKUCY=";
|
|
};
|
|
|
|
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 = ''
|
|
# Remove Windows batch files (unclutter $out/bin)
|
|
rm ./bin/*.bat
|
|
|
|
mkdir -p "$out/share/basex" "$out/share/applications"
|
|
|
|
cp -R bin etc lib webapp src BaseX.jar "$out"
|
|
cp -R readme.txt webapp "$out/share/basex"
|
|
|
|
# Install desktop file
|
|
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 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 = "https://basex.org/";
|
|
license = licenses.bsd3;
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
};
|
|
}
|