certificate-ripper: 2.2.0 -> 2.3.0

This commit is contained in:
TomaSajt 2024-02-19 21:00:38 +01:00
parent a7d38622e7
commit 0172dccfe7
No known key found for this signature in database
GPG key ID: F011163C050122A1
2 changed files with 10 additions and 13 deletions

View file

@ -6,7 +6,7 @@
let
pname = "certificate-ripper";
version = "2.2.0";
version = "2.3.0";
jar = maven.buildMavenPackage {
pname = "${pname}-jar";
@ -16,15 +16,20 @@ let
owner = "Hakky54";
repo = "certificate-ripper";
rev = version;
hash = "sha256-snavZVLY8sHinLnG6k61eSQlR9sb8+k5tRHqu4kzQKM=";
hash = "sha256-q/UhKLFAre3YUH2W7e+SH4kRM0GIZAUyNJFDm02eL+8=";
};
patches = [
./make-deterministic.patch
./pin-default-maven-plguin-versions.patch
./fix-test-temp-dir-path.patch
];
mvnHash = "sha256-ahw9VVlvBPlWChcJzXFna55kxqVeJMmdaLtwWcJ+qSA=";
mvnHash = "sha256-/iy7DXBAyq8TIpvrd2WAQh+9OApfxCWo1NoGwbzbq7s=";
mvnParameters = lib.escapeShellArgs [
"-Dproject.build.outputTimestamp=1980-01-01T00:00:02Z" # make timestamp deterministic
"-Dtest=!PemExportCommandShould#resolveRootCaOnlyWhenEnabled" # disable test using network
];
installPhase = ''
install -Dm644 target/crip.jar $out

View file

@ -2,15 +2,7 @@ diff --git a/pom.xml b/pom.xml
index dd0075d..46ac184 100644
--- a/pom.xml
+++ b/pom.xml
@@ -46,6 +46,7 @@
<version.license-maven-plugin>4.2.rc3</version.license-maven-plugin>
<license.git.copyrightYears>2021</license.git.copyrightYears>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ <project.build.outputTimestamp>1980-01-01T00:00:02Z</project.build.outputTimestamp>
</properties>
<scm>
@@ -103,6 +104,55 @@
@@ -103,6 +103,55 @@
<build>
<plugins>