certificate-ripper: 2.2.0 -> 2.3.0
This commit is contained in:
parent
a7d38622e7
commit
0172dccfe7
2 changed files with 10 additions and 13 deletions
|
@ -6,7 +6,7 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
pname = "certificate-ripper";
|
pname = "certificate-ripper";
|
||||||
version = "2.2.0";
|
version = "2.3.0";
|
||||||
|
|
||||||
jar = maven.buildMavenPackage {
|
jar = maven.buildMavenPackage {
|
||||||
pname = "${pname}-jar";
|
pname = "${pname}-jar";
|
||||||
|
@ -16,15 +16,20 @@ let
|
||||||
owner = "Hakky54";
|
owner = "Hakky54";
|
||||||
repo = "certificate-ripper";
|
repo = "certificate-ripper";
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-snavZVLY8sHinLnG6k61eSQlR9sb8+k5tRHqu4kzQKM=";
|
hash = "sha256-q/UhKLFAre3YUH2W7e+SH4kRM0GIZAUyNJFDm02eL+8=";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
./make-deterministic.patch
|
./pin-default-maven-plguin-versions.patch
|
||||||
./fix-test-temp-dir-path.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 = ''
|
installPhase = ''
|
||||||
install -Dm644 target/crip.jar $out
|
install -Dm644 target/crip.jar $out
|
||||||
|
|
|
@ -2,15 +2,7 @@ diff --git a/pom.xml b/pom.xml
|
||||||
index dd0075d..46ac184 100644
|
index dd0075d..46ac184 100644
|
||||||
--- a/pom.xml
|
--- a/pom.xml
|
||||||
+++ b/pom.xml
|
+++ b/pom.xml
|
||||||
@@ -46,6 +46,7 @@
|
@@ -103,6 +103,55 @@
|
||||||
<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 @@
|
|
||||||
|
|
||||||
<build>
|
<build>
|
||||||
<plugins>
|
<plugins>
|
Loading…
Reference in a new issue