Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
34 lines
719 B
Nix
34 lines
719 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchzip,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "jdom";
|
|
version = "2.0.6.1";
|
|
|
|
src = fetchzip {
|
|
url = "http://www.jdom.org/dist/binary/jdom-${version}.zip";
|
|
stripRoot = false;
|
|
hash = "sha256-Y++mlO+7N5EU2NhRzLl5x5WXNqu/2tDO/NpNhfRegcg=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
mkdir -p $out/share/java
|
|
cp -a . $out/share/java
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Java-based solution for accessing, manipulating, and outputting XML data from Java code";
|
|
homepage = "http://www.jdom.org";
|
|
platforms = platforms.unix;
|
|
sourceProvenance = with sourceTypes; [ binaryBytecode ];
|
|
license = licenses.bsdOriginal;
|
|
};
|
|
}
|