Merge pull request #306766 from TomaSajt/projectlibre

projectlibre: 1.7.0 -> 1.9.3
This commit is contained in:
Weijia Wang 2024-04-27 05:34:18 +02:00 committed by GitHub
commit faada32c5c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,23 +1,24 @@
{ lib {
, stdenv lib,
, fetchgit stdenv,
, ant fetchgit,
, jdk ant,
, stripJavaArchivesHook jdk,
, makeWrapper stripJavaArchivesHook,
, jre makeWrapper,
, coreutils jre,
, which coreutils,
which,
}: }:
stdenv.mkDerivation { stdenv.mkDerivation (finalAttrs: {
pname = "projectlibre"; pname = "projectlibre";
version = "1.7.0"; version = "1.9.3";
src = fetchgit { src = fetchgit {
url = "https://git.code.sf.net/p/projectlibre/code"; url = "https://git.code.sf.net/p/projectlibre/code";
rev = "0c939507cc63e9eaeb855437189cdec79e9386c2"; # version 1.7.0 was not tagged rev = "20814e88dc83694f9fc6780c2550ca5c8a87aa16"; # version 1.9.3 was not tagged
hash = "sha256-eLUbsQkYuVQxt4px62hzfdUNg2zCL/VOSVEVctfbxW8="; hash = "sha256-yXgYyy3jWxYMXKsNCRWdO78gYRmjKpO9U5WWU6PtwMU=";
}; };
nativeBuildInputs = [ nativeBuildInputs = [
@ -27,9 +28,17 @@ stdenv.mkDerivation {
makeWrapper makeWrapper
]; ];
runtimeDeps = [
jre
coreutils
which
];
env.JAVA_TOOL_OPTIONS = "-Dfile.encoding=UTF8";
buildPhase = '' buildPhase = ''
runHook preBuild runHook preBuild
ant -f openproj_build/build.xml ant -f projectlibre_build/build.xml
runHook postBuild runHook postBuild
''; '';
@ -38,7 +47,7 @@ stdenv.mkDerivation {
mkdir -p $out/share/{projectlibre/samples,doc/projectlibre} mkdir -p $out/share/{projectlibre/samples,doc/projectlibre}
pushd openproj_build pushd projectlibre_build
cp -R dist/* $out/share/projectlibre cp -R dist/* $out/share/projectlibre
cp -R license $out/share/doc/projectlibre cp -R license $out/share/doc/projectlibre
cp -R resources/samples/* $out/share/projectlibre/samples cp -R resources/samples/* $out/share/projectlibre/samples
@ -51,7 +60,7 @@ stdenv.mkDerivation {
--replace-fail "/usr/share/projectlibre" "$out/share/projectlibre" --replace-fail "/usr/share/projectlibre" "$out/share/projectlibre"
wrapProgram $out/bin/projectlibre \ wrapProgram $out/bin/projectlibre \
--prefix PATH : ${lib.makeBinPath [ jre coreutils which ]} --prefix PATH : ${lib.makeBinPath finalAttrs.runtimeDeps}
runHook postInstall runHook postInstall
''; '';
@ -61,8 +70,10 @@ stdenv.mkDerivation {
homepage = "https://www.projectlibre.com/"; homepage = "https://www.projectlibre.com/";
license = lib.licenses.cpal10; license = lib.licenses.cpal10;
mainProgram = "projectlibre"; mainProgram = "projectlibre";
maintainers = with lib.maintainers; [ Mogria tomasajt ]; maintainers = with lib.maintainers; [
Mogria
tomasajt
];
platforms = jre.meta.platforms; platforms = jre.meta.platforms;
}; };
} })