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
91 lines
2.4 KiB
Nix
91 lines
2.4 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchurl,
|
|
jdk,
|
|
makeWrapper,
|
|
autoPatchelfHook,
|
|
makeDesktopItem,
|
|
glib,
|
|
libsecret,
|
|
webkitgtk_4_1,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "apache-directory-studio";
|
|
version = "2.0.0-M17";
|
|
versionWithDate = "2.0.0.v20210717-M17";
|
|
|
|
src =
|
|
if stdenv.hostPlatform.system == "x86_64-linux" then
|
|
fetchurl {
|
|
url = "mirror://apache/directory/studio/${versionWithDate}/ApacheDirectoryStudio-${versionWithDate}-linux.gtk.x86_64.tar.gz";
|
|
sha256 = "19zdspzv4n3mfgb1g45s3wh0vbvn6a9zjd4xi5x2afmdjkzlwxi4";
|
|
}
|
|
else
|
|
throw "Unsupported system: ${stdenv.hostPlatform.system}";
|
|
|
|
desktopItem = makeDesktopItem {
|
|
name = "apache-directory-studio";
|
|
exec = "ApacheDirectoryStudio";
|
|
icon = "apache-directory-studio";
|
|
comment = "Eclipse-based LDAP browser and directory client";
|
|
desktopName = "Apache Directory Studio";
|
|
genericName = "Apache Directory Studio";
|
|
categories = [
|
|
"Java"
|
|
"Network"
|
|
];
|
|
};
|
|
|
|
buildInputs = [
|
|
glib
|
|
libsecret
|
|
];
|
|
nativeBuildInputs = [
|
|
makeWrapper
|
|
autoPatchelfHook
|
|
];
|
|
|
|
installPhase = ''
|
|
dest="$out/libexec/ApacheDirectoryStudio"
|
|
mkdir -p "$dest"
|
|
cp -r . "$dest"
|
|
|
|
mkdir -p "$out/bin"
|
|
patchelf --set-interpreter "$(cat $NIX_CC/nix-support/dynamic-linker)" \
|
|
"$dest/ApacheDirectoryStudio"
|
|
|
|
# About `/tmp/SWT-GDBusServer`, see
|
|
# https://github.com/adoptium/adoptium-support/issues/785#issuecomment-1866680133
|
|
# and
|
|
# https://github.com/adoptium/adoptium-support/issues/785#issuecomment-2387481967.
|
|
makeWrapper "$dest/ApacheDirectoryStudio" \
|
|
"$out/bin/ApacheDirectoryStudio" \
|
|
--prefix PATH : "${jdk}/bin" \
|
|
--prefix LD_LIBRARY_PATH : ${
|
|
lib.makeLibraryPath [
|
|
glib
|
|
webkitgtk_4_1
|
|
]
|
|
} \
|
|
--run "mkdir -p /tmp/SWT-GDBusServer"
|
|
install -D icon.xpm "$out/share/pixmaps/apache-directory-studio.xpm"
|
|
install -D -t "$out/share/applications" ${desktopItem}/share/applications/*
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Eclipse-based LDAP browser and directory client";
|
|
homepage = "https://directory.apache.org/studio/";
|
|
sourceProvenance = with sourceTypes; [
|
|
binaryBytecode
|
|
binaryNativeCode
|
|
];
|
|
license = licenses.asl20;
|
|
# Upstream supports macOS and Windows too.
|
|
platforms = platforms.linux;
|
|
maintainers = [ maintainers.bjornfor ];
|
|
mainProgram = "ApacheDirectoryStudio";
|
|
};
|
|
}
|