summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorPierre Bourdon <delroth@gmail.com>2023-02-05 15:08:48 +0100
committerGitHub <noreply@github.com>2023-02-05 15:08:48 +0100
commitc2166eea486b228862f627b5dc83b2c0d92b7910 (patch)
treeb4da0daa09313521fcaccb625ac08afae32fc909
parent47611e4acccf919a6f3ea7aaeeef18da7970e4ae (diff)
parent8025367cd689fa68ee56495c1c88649a5f3e1c36 (diff)
Merge pull request #214728 from Dettorer/update-digital
digital: 0.29 -> 0.30
-rw-r--r--pkgs/applications/science/electronics/digital/default.nix23
-rw-r--r--pkgs/applications/science/electronics/digital/pom.xml.patch30
2 files changed, 8 insertions, 45 deletions
diff --git a/pkgs/applications/science/electronics/digital/default.nix b/pkgs/applications/science/electronics/digital/default.nix
index 0515809dffeb..72b931f1d11c 100644
--- a/pkgs/applications/science/electronics/digital/default.nix
+++ b/pkgs/applications/science/electronics/digital/default.nix
@@ -4,8 +4,8 @@
let
pkgDescription = "A digital logic designer and circuit simulator.";
- version = "0.29";
- buildDate = "2022-02-11T18:10:34+01:00"; # v0.29 commit date
+ version = "0.30";
+ buildDate = "2023-02-03T08:00:56+01:00"; # v0.30 commit date
desktopItem = makeDesktopItem {
type = "Application";
@@ -24,7 +24,8 @@ let
# inspect the .git folder to find the version number we are building, we then
# provide that version number manually as a property.
# (see https://github.com/hneemann/Digital/issues/289#issuecomment-513721481)
- mvnOptions = "-Pno-git-rev -Dgit.commit.id.describe=${version} -Dproject.build.outputTimestamp=${buildDate}";
+ # Also use the commit date as a build and output timestamp.
+ mvnOptions = "-Pno-git-rev -Dgit.commit.id.describe=${version} -Dproject.build.outputTimestamp=${buildDate} -DbuildTimestamp=${buildDate}";
in
stdenv.mkDerivation rec {
pname = "digital";
@@ -33,20 +34,16 @@ stdenv.mkDerivation rec {
src = fetchFromGitHub {
owner = "hneemann";
repo = "Digital";
- rev = "287dd939d6f2d4d02c0d883c6178c3425c28d39c";
- sha256 = "o5gaExUTTbk6WgQVw7/IeXhpNkj1BLkwD752snQqjIg=";
+ rev = "932791eb6486d04f2ea938d83bcdb71b56d3a3f6";
+ sha256 = "cDykYlcFvDLFBy9UnX07iCR2LCq28SNU+h9vRT/AoJM=";
};
- # Use fixed dates in the pom.xml and upgrade the jar and assembly plugins to
- # a version where they support reproducible builds
- patches = [ ./pom.xml.patch ];
-
# Fetching maven dependencies from "central" needs the network at build phase,
# we do that in this extra derivation that explicitely specifies its
# outputHash to ensure determinism.
mavenDeps = stdenv.mkDerivation {
name = "${pname}-${version}-maven-deps";
- inherit src nativeBuildInputs version patches postPatch;
+ inherit src nativeBuildInputs version;
dontFixup = true;
buildPhase = ''
mvn package ${mvnOptions} -Dmaven.repo.local=$out
@@ -62,15 +59,11 @@ stdenv.mkDerivation rec {
'';
outputHashAlgo = "sha256";
outputHashMode = "recursive";
- outputHash = "X5ppGUVwNQrMnjzD4Kin1Xmt4O3x+qr7jK4jr6E8tCI=";
+ outputHash = "1Cgw+5V2E/RENMRMm368+2yvY7y6v9gTlo+LRgrCXcE=";
};
nativeBuildInputs = [ copyDesktopItems maven makeWrapper ];
- postPatch = ''
- substituteInPlace pom.xml --subst-var-by buildDate "${buildDate}"
- '';
-
buildPhase = ''
mvn package --offline ${mvnOptions} -Dmaven.repo.local=${mavenDeps}
'';
diff --git a/pkgs/applications/science/electronics/digital/pom.xml.patch b/pkgs/applications/science/electronics/digital/pom.xml.patch
deleted file mode 100644
index cdc5a777c49d..000000000000
--- a/pkgs/applications/science/electronics/digital/pom.xml.patch
+++ /dev/null
@@ -1,30 +0,0 @@
-diff --git a/pom.xml b/pom.xml
-index d5f8330b4..58ed18b63 100644
---- a/pom.xml
-+++ b/pom.xml
-@@ -129,7 +130,7 @@
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
-- <version>2.5</version>
-+ <version>3.2.0</version>
- <configuration>
- <archive>
- <manifest>
-@@ -188,6 +189,7 @@
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
-+ <version>3.2.0</version>
- <configuration>
- <finalName>Digital</finalName>
- <appendAssemblyId>false</appendAssemblyId>
-@@ -202,7 +204,7 @@
- </manifest>
- <manifestEntries>
- <Build-SCM-Revision>${git.commit.id.describe}</Build-SCM-Revision>
-- <Build-Time>${maven.build.timestamp}</Build-Time>
-+ <Build-Time>@buildDate@</Build-Time>
- <SplashScreen-Image>icons/splash.png</SplashScreen-Image>
- </manifestEntries>
- </archive>