nixpkgs/pkgs/applications/misc/ganttproject-bin/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
1.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchzip, makeDesktopItem, makeWrapper
, jre
}:
2016-06-20 14:04:35 +00:00
stdenv.mkDerivation rec {
pname = "ganttproject-bin";
2024-01-22 19:59:40 +00:00
version = "3.3.3300";
2016-06-20 14:04:35 +00:00
2024-01-22 19:59:40 +00:00
src = fetchzip {
url = "https://dl.ganttproject.biz/ganttproject-${version}/ganttproject-${version}.zip";
stripRoot = false;
hash = "sha256-U9x64UIBuVtW44zbsdWuMRZyEJhZ8VUWbDVtapTGPMo=";
2016-06-20 14:04:35 +00:00
};
nativeBuildInputs = [ makeWrapper ];
buildInputs = [ jre ];
installPhase = let
desktopItem = makeDesktopItem {
name = "ganttproject";
exec = "ganttproject";
icon = "ganttproject";
desktopName = "GanttProject";
genericName = "Shedule and manage projects";
comment = meta.description;
categories = [ "Office" ];
2016-06-20 14:04:35 +00:00
};
javaOptions = [
"-Dawt.useSystemAAFontSettings=on"
];
2016-06-20 14:04:35 +00:00
in ''
mkdir -pv "$out/share/ganttproject"
cp -rv * "$out/share/ganttproject"
mkdir -pv "$out/bin"
wrapProgram "$out/share/ganttproject/ganttproject" \
--set JAVA_HOME "${jre}" \
--set _JAVA_OPTIONS "${builtins.toString javaOptions}"
2016-06-20 14:04:35 +00:00
mv -v "$out/share/ganttproject/ganttproject" "$out/bin"
cp -rv "${desktopItem}/share/applications" "$out/share"
'';
meta = with lib; {
2016-06-20 14:04:35 +00:00
description = "Project scheduling and management";
homepage = "https://www.ganttproject.biz/";
downloadPage = "https://www.ganttproject.biz/download";
2016-06-20 14:04:35 +00:00
# GanttProject itself is GPL3+. All bundled libraries are declared
# GPL3-compatible. See ${downloadPage} for detailed information.
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = [ maintainers.vidbina ];
2024-02-11 02:19:15 +00:00
mainProgram = "ganttproject";
2016-06-20 14:04:35 +00:00
};
}