nixpkgs/pkgs/applications/misc/projectlibre/default.nix

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

69 lines
1.6 KiB
Nix
Raw Normal View History

2024-03-11 12:21:00 +00:00
{ lib
, stdenv
, fetchgit
, ant
, jdk
2024-03-11 21:09:33 +00:00
, stripJavaArchivesHook
2024-03-11 12:21:00 +00:00
, makeWrapper
, jre
, coreutils
, which
}:
2024-03-11 12:21:00 +00:00
stdenv.mkDerivation {
pname = "projectlibre";
version = "1.7.0";
src = fetchgit {
url = "https://git.code.sf.net/p/projectlibre/code";
rev = "0c939507cc63e9eaeb855437189cdec79e9386c2"; # version 1.7.0 was not tagged
2024-03-11 12:21:00 +00:00
hash = "sha256-eLUbsQkYuVQxt4px62hzfdUNg2zCL/VOSVEVctfbxW8=";
};
2024-03-11 12:21:00 +00:00
nativeBuildInputs = [
ant
jdk
2024-03-11 21:09:33 +00:00
stripJavaArchivesHook
2024-03-11 12:21:00 +00:00
makeWrapper
];
buildPhase = ''
2024-03-11 12:21:00 +00:00
runHook preBuild
ant -f openproj_build/build.xml
runHook postBuild
'';
installPhase = ''
2024-03-11 12:21:00 +00:00
runHook preInstall
mkdir -p $out/share/{projectlibre/samples,doc/projectlibre}
pushd openproj_build
cp -R dist/* $out/share/projectlibre
cp -R license $out/share/doc/projectlibre
cp -R resources/samples/* $out/share/projectlibre/samples
install -Dm644 resources/projectlibre.desktop -t $out/share/applications
install -Dm644 resources/projectlibre.png -t $out/share/pixmaps
install -Dm755 resources/projectlibre -t $out/bin
popd
substituteInPlace $out/bin/projectlibre \
--replace-fail "/usr/share/projectlibre" "$out/share/projectlibre"
wrapProgram $out/bin/projectlibre \
2024-03-11 12:21:00 +00:00
--prefix PATH : ${lib.makeBinPath [ jre coreutils which ]}
2024-03-11 12:21:00 +00:00
runHook postInstall
'';
2024-03-11 12:21:00 +00:00
meta = {
2018-03-18 20:58:13 +00:00
description = "Project-Management Software similar to MS-Project";
2024-03-11 12:21:00 +00:00
homepage = "https://www.projectlibre.com/";
license = lib.licenses.cpal10;
mainProgram = "projectlibre";
2024-03-11 12:21:00 +00:00
maintainers = with lib.maintainers; [ Mogria tomasajt ];
platforms = jre.meta.platforms;
};
}
2024-03-11 12:21:00 +00:00