calcoo: make deterministic and clean up

This commit is contained in:
TomaSajt 2024-01-03 18:35:47 +01:00
parent d7db3ee91f
commit ca8e544e4e
No known key found for this signature in database
GPG Key ID: F011163C050122A1
2 changed files with 15 additions and 38 deletions

View File

@ -1,21 +0,0 @@
diff -Naur calcoo-2.1.0-old/build.xml calcoo-2.1.0-new/build.xml
--- calcoo-2.1.0-old/build.xml 1969-12-31 21:00:01.000000000 -0300
+++ calcoo-2.1.0-new/build.xml 2022-04-16 15:41:59.763861191 -0300
@@ -16,7 +16,7 @@
<!-- Create the build directory structure used by compile -->
<mkdir dir="${build}"/>
<!-- Compile the java code from ${src} into ${build} -->
- <javac srcdir="${src}" destdir="${build}" includeantruntime="false"/>
+ <javac srcdir="${src}" destdir="${build}" includeantruntime="false" encoding="iso-8859-1"/>
</target>
<target name="copyresource" depends="compile">
@@ -31,7 +31,7 @@
<target name="testcompile">
<mkdir dir="${testbuild}"/>
<!-- Compile the java code from ${testsrc} into ${testbuild} -->
- <javac srcdir="${testsrc}" destdir="${testbuild}" includeantruntime="false">
+ <javac srcdir="${testsrc}" destdir="${testbuild}" includeantruntime="false" encoding="iso-8859-1">
<classpath>
<pathelement location="${junitpath}\junit.jar"/>
<pathelement location="${junitpath}\hamcrest-core.jar"/>

View File

@ -2,57 +2,55 @@
, stdenv
, fetchzip
, ant
, canonicalize-jars-hook
, jdk
, makeWrapper
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "calcoo";
version = "2.1.0";
src = fetchzip {
url = "mirror://sourceforge/project/calcoo/calcoo/${version}/${pname}-${version}.zip";
url = "mirror://sourceforge/calcoo/calcoo-${finalAttrs.version}.zip";
hash = "sha256-Bdavj7RaI5CkWiOJY+TPRIRfNelfW5qdl/74J1KZPI0=";
};
patches = [
# Sets javac encoding option on build.xml
./0001-javac-encoding.diff
];
nativeBuildInputs = [
ant
canonicalize-jars-hook
jdk
makeWrapper
];
dontConfigure = true;
env.JAVA_TOOL_OPTIONS = "-Dfile.encoding=iso-8859-1";
buildPhase = ''
runHook preBuild
ant
runHook postBuild
'';
installPhase = ''
runHook preInstall
mkdir -p $out/bin $out/share/${pname}
mv dist/lib/calcoo.jar $out/share/${pname}
install -Dm644 dist/lib/calcoo.jar -t $out/share/calcoo
makeWrapper ${jdk}/bin/java $out/bin/calcoo \
--add-flags "-jar $out/share/${pname}/calcoo.jar"
--add-flags "-jar $out/share/calcoo/calcoo.jar"
runHook postInstall
'';
meta = with lib; {
homepage = "https://calcoo.sourceforge.net/";
meta = {
changelog = "https://calcoo.sourceforge.net/changelog.html";
description = "RPN and algebraic scientific calculator";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ AndersonTorres ];
homepage = "https://calcoo.sourceforge.net/";
license = lib.licenses.gpl2Plus;
mainProgram = "calcoo";
maintainers = with lib.maintainers; [ AndersonTorres ];
inherit (jdk.meta) platforms;
};
}
})