mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 00:53:12 +03:00
forge-mtg: init at 1.6.53 (#182053)
This commit is contained in:
parent
cbfc31de7b
commit
f03ae29142
95
pkgs/games/forge-mtg/default.nix
Normal file
95
pkgs/games/forge-mtg/default.nix
Normal file
@ -0,0 +1,95 @@
|
||||
{ coreutils
|
||||
, fetchFromGitHub
|
||||
, gnused
|
||||
, lib
|
||||
, maven
|
||||
, makeWrapper
|
||||
, openjdk
|
||||
, stdenv
|
||||
}:
|
||||
|
||||
let
|
||||
version = "1.6.53";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Card-Forge";
|
||||
repo = "forge";
|
||||
rev = "forge-${version}";
|
||||
sha256 = "sha256-tNPG90mw8HZjp37YJ9JQlOBiVNPRo6xuNur651Adva8=";
|
||||
};
|
||||
|
||||
# launch4j downloads and runs a native binary during the package phase.
|
||||
patches = [ ./no-launch4j.patch ];
|
||||
|
||||
mavenRepository = stdenv.mkDerivation {
|
||||
pname = "forge-mtg-maven-repository";
|
||||
inherit version src patches;
|
||||
|
||||
nativeBuildInputs = [ maven ];
|
||||
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
# Tests need a running Xorg.
|
||||
mvn package -Dmaven.repo.local=$out -DskipTests
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
find $out -type f \( \
|
||||
-name \*.lastUpdated \
|
||||
-o -name resolver-status.properties \
|
||||
-o -name _remote.repositories \) \
|
||||
-delete
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
outputHashAlgo = "sha256";
|
||||
outputHashMode = "recursive";
|
||||
outputHash = "sha256-6FTbYXaF3rBIZov2WJxjG/ovmvimjXFPaFchAduVzI8=";
|
||||
};
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
pname = "forge-mtg";
|
||||
inherit version src patches;
|
||||
|
||||
nativeBuildInputs = [ maven makeWrapper ];
|
||||
|
||||
buildPhase = ''
|
||||
runHook preBuild
|
||||
# Tests need a running Xorg.
|
||||
mvn --offline -Dmaven.repo.local=${mavenRepository} -DskipTests package;
|
||||
runHook postBuild
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -pv $out/{bin,share/forge}
|
||||
cp -av \
|
||||
forge-gui-desktop/target/forge.sh \
|
||||
forge-gui-desktop/target/forge-gui-desktop-${version}-jar-with-dependencies.jar \
|
||||
forge-adventure/target/forge-adventure.sh \
|
||||
forge-adventure/target/forge-adventure-${version}-jar-with-dependencies.jar \
|
||||
forge-gui/res \
|
||||
$out/share/forge
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
preFixup = ''
|
||||
for commandToInstall in forge forge-adventure; do
|
||||
chmod 555 $out/share/forge/$commandToInstall.sh
|
||||
makeWrapper $out/share/forge/$commandToInstall.sh $out/bin/$commandToInstall \
|
||||
--prefix PATH : ${lib.makeBinPath [ coreutils openjdk gnused ]} \
|
||||
--set JAVA_HOME ${openjdk}/lib/openjdk \
|
||||
--set SENTRY_DSN ""
|
||||
done
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Magic: the Gathering card game with rules enforcement";
|
||||
homepage = "https://www.slightlymagic.net/forum/viewforum.php?f=26";
|
||||
platforms = openjdk.meta.platforms;
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ eigengrau ];
|
||||
};
|
||||
}
|
333
pkgs/games/forge-mtg/no-launch4j.patch
Normal file
333
pkgs/games/forge-mtg/no-launch4j.patch
Normal file
@ -0,0 +1,333 @@
|
||||
diff --git a/forge-adventure/pom.xml b/forge-adventure/pom.xml
|
||||
index 4d81b150e0..80dd1e04cb 100644
|
||||
--- a/forge-adventure/pom.xml
|
||||
+++ b/forge-adventure/pom.xml
|
||||
@@ -41,131 +41,6 @@
|
||||
</configuration>
|
||||
</plugin>
|
||||
|
||||
- <plugin>
|
||||
- <groupId>com.akathist.maven.plugins.launch4j</groupId>
|
||||
- <artifactId>launch4j-maven-plugin</artifactId>
|
||||
- <version>1.7.25</version>
|
||||
- <executions>
|
||||
- <execution>
|
||||
- <id>l4j-adv</id>
|
||||
- <phase>package</phase>
|
||||
- <goals>
|
||||
- <goal>launch4j</goal>
|
||||
- </goals>
|
||||
- <configuration>
|
||||
- <headerType>gui</headerType>
|
||||
- <outfile>${project.build.directory}/forge-adventure-java8.exe</outfile>
|
||||
- <jar>${project.build.finalName}-jar-with-dependencies.jar</jar>
|
||||
- <dontWrapJar>true</dontWrapJar>
|
||||
- <errTitle>forge</errTitle>
|
||||
- <icon>src/main/config/forge-adventure.ico</icon>
|
||||
- <classPath>
|
||||
- <mainClass>forge.adventure.Main</mainClass>
|
||||
- <addDependencies>false</addDependencies>
|
||||
- <preCp>anything</preCp>
|
||||
- </classPath>
|
||||
- <jre>
|
||||
- <minVersion>1.8.0</minVersion>
|
||||
- <maxHeapSize>4096</maxHeapSize>
|
||||
- <opts>
|
||||
- <opt>-Dfile.encoding=UTF-8</opt>
|
||||
- </opts>
|
||||
- </jre>
|
||||
- <versionInfo>
|
||||
- <fileVersion>
|
||||
- 1.0.0.0
|
||||
- </fileVersion>
|
||||
- <txtFileVersion>
|
||||
- 1.0.0.0
|
||||
- </txtFileVersion>
|
||||
- <fileDescription>Forge</fileDescription>
|
||||
- <copyright>Forge</copyright>
|
||||
- <productVersion>
|
||||
- 1.0.0.0
|
||||
- </productVersion>
|
||||
- <txtProductVersion>
|
||||
- 1.0.0.0
|
||||
- </txtProductVersion>
|
||||
- <productName>forge-adventure</productName>
|
||||
- <internalName>forge-adventure</internalName>
|
||||
- <originalFilename>forge-adventure-java8.exe</originalFilename>
|
||||
- </versionInfo>
|
||||
- </configuration>
|
||||
- </execution>
|
||||
- <!--extra-->
|
||||
- <execution>
|
||||
- <id>l4j-adv2</id>
|
||||
- <phase>package</phase>
|
||||
- <goals>
|
||||
- <goal>launch4j</goal>
|
||||
- </goals>
|
||||
- <configuration>
|
||||
- <headerType>gui</headerType>
|
||||
- <outfile>${project.build.directory}/forge-adventure.exe</outfile>
|
||||
- <jar>${project.build.finalName}-jar-with-dependencies.jar</jar>
|
||||
- <dontWrapJar>true</dontWrapJar>
|
||||
- <errTitle>forge</errTitle>
|
||||
- <downloadUrl>https://www.oracle.com/java/technologies/downloads/</downloadUrl>
|
||||
- <icon>src/main/config/forge-adventure.ico</icon>
|
||||
- <classPath>
|
||||
- <mainClass>forge.adventure.Main</mainClass>
|
||||
- <addDependencies>false</addDependencies>
|
||||
- <preCp>anything</preCp>
|
||||
- </classPath>
|
||||
- <jre>
|
||||
- <minVersion>11.0.1</minVersion>
|
||||
- <jdkPreference>jdkOnly</jdkPreference>
|
||||
- <maxHeapSize>4096</maxHeapSize>
|
||||
- <opts>
|
||||
- <opt>-Dfile.encoding=UTF-8</opt>
|
||||
- <opt>--add-opens java.base/java.lang=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.math=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/jdk.internal.misc=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.nio=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens=java.base/sun.nio.ch=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.util=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.lang.reflect=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.text=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/java.awt=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/java.awt.font=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/java.awt.image=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/java.awt.color=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/sun.awt.image=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/javax.swing=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/javax.swing.border=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/javax.swing.event=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/sun.swing=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/java.beans=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.util.concurrent=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.net=ALL-UNNAMED</opt>
|
||||
- <opt>-Dio.netty.tryReflectionSetAccessible=true</opt>
|
||||
- </opts>
|
||||
- </jre>
|
||||
- <versionInfo>
|
||||
- <fileVersion>
|
||||
- 1.0.0.0
|
||||
- </fileVersion>
|
||||
- <txtFileVersion>
|
||||
- 1.0.0.0
|
||||
- </txtFileVersion>
|
||||
- <fileDescription>Forge</fileDescription>
|
||||
- <copyright>Forge</copyright>
|
||||
- <productVersion>
|
||||
- 1.0.0.0
|
||||
- </productVersion>
|
||||
- <txtProductVersion>
|
||||
- 1.0.0.0
|
||||
- </txtProductVersion>
|
||||
- <productName>forge-adventure</productName>
|
||||
- <internalName>forge-adventure</internalName>
|
||||
- <originalFilename>forge-adventure.exe</originalFilename>
|
||||
- </versionInfo>
|
||||
- </configuration>
|
||||
- </execution>
|
||||
- <!--extra-->
|
||||
- </executions>
|
||||
- </plugin>
|
||||
-
|
||||
<plugin>
|
||||
<groupId>com.google.code.maven-replacer-plugin</groupId>
|
||||
<artifactId>replacer</artifactId>
|
||||
diff --git a/forge-gui-desktop/pom.xml b/forge-gui-desktop/pom.xml
|
||||
index 218e641096..e8d0905a3d 100644
|
||||
--- a/forge-gui-desktop/pom.xml
|
||||
+++ b/forge-gui-desktop/pom.xml
|
||||
@@ -231,60 +231,6 @@
|
||||
<id>windows-linux-release</id>
|
||||
<build>
|
||||
<plugins>
|
||||
- <plugin>
|
||||
- <groupId>com.akathist.maven.plugins.launch4j</groupId>
|
||||
- <artifactId>launch4j-maven-plugin</artifactId>
|
||||
- <version>2.1.2</version>
|
||||
- <executions>
|
||||
- <execution>
|
||||
- <id>l4j-gui</id>
|
||||
- <phase>package</phase>
|
||||
- <goals>
|
||||
- <goal>launch4j</goal>
|
||||
- </goals>
|
||||
- <configuration>
|
||||
- <headerType>gui</headerType>
|
||||
- <outfile>${project.build.directory}/forge-java8.exe</outfile>
|
||||
- <jar>${project.build.finalName}-jar-with-dependencies.jar</jar>
|
||||
- <dontWrapJar>true</dontWrapJar>
|
||||
- <errTitle>forge</errTitle>
|
||||
- <icon>src/main/config/forge.ico</icon>
|
||||
- <classPath>
|
||||
- <mainClass>forge.view.Main</mainClass>
|
||||
- <addDependencies>false</addDependencies>
|
||||
- <preCp>anything</preCp>
|
||||
- </classPath>
|
||||
- <jre>
|
||||
- <minVersion>1.8.0</minVersion>
|
||||
- <maxHeapSize>4096</maxHeapSize>
|
||||
- <opts>
|
||||
- <opt>-Dfile.encoding=UTF-8</opt>
|
||||
- </opts>
|
||||
- </jre>
|
||||
- <versionInfo>
|
||||
- <fileVersion>
|
||||
- ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0
|
||||
- </fileVersion>
|
||||
- <txtFileVersion>
|
||||
- ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0
|
||||
- </txtFileVersion>
|
||||
- <fileDescription>Forge</fileDescription>
|
||||
- <copyright>Forge</copyright>
|
||||
- <productVersion>
|
||||
- ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0
|
||||
- </productVersion>
|
||||
- <txtProductVersion>
|
||||
- ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0
|
||||
- </txtProductVersion>
|
||||
- <productName>Forge</productName>
|
||||
- <internalName>forge</internalName>
|
||||
- <originalFilename>forge-java8.exe</originalFilename>
|
||||
- </versionInfo>
|
||||
- </configuration>
|
||||
- </execution>
|
||||
- </executions>
|
||||
- </plugin>
|
||||
-
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
||||
@@ -396,131 +342,6 @@
|
||||
<id>windows-linux</id>
|
||||
<build>
|
||||
<plugins>
|
||||
- <plugin>
|
||||
- <groupId>com.akathist.maven.plugins.launch4j</groupId>
|
||||
- <artifactId>launch4j-maven-plugin</artifactId>
|
||||
- <version>2.1.2</version>
|
||||
- <executions>
|
||||
- <execution>
|
||||
- <id>l4j-gui</id>
|
||||
- <phase>package</phase>
|
||||
- <goals>
|
||||
- <goal>launch4j</goal>
|
||||
- </goals>
|
||||
- <configuration>
|
||||
- <headerType>gui</headerType>
|
||||
- <outfile>${project.build.directory}/forge-java8.exe</outfile>
|
||||
- <jar>${project.build.finalName}-jar-with-dependencies.jar</jar>
|
||||
- <dontWrapJar>true</dontWrapJar>
|
||||
- <errTitle>forge</errTitle>
|
||||
- <icon>src/main/config/forge.ico</icon>
|
||||
- <classPath>
|
||||
- <mainClass>forge.view.Main</mainClass>
|
||||
- <addDependencies>false</addDependencies>
|
||||
- <preCp>anything</preCp>
|
||||
- </classPath>
|
||||
- <jre>
|
||||
- <minVersion>1.8.0</minVersion>
|
||||
- <maxHeapSize>4096</maxHeapSize>
|
||||
- <opts>
|
||||
- <opt>-Dfile.encoding=UTF-8</opt>
|
||||
- </opts>
|
||||
- </jre>
|
||||
- <versionInfo>
|
||||
- <fileVersion>
|
||||
- ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0
|
||||
- </fileVersion>
|
||||
- <txtFileVersion>
|
||||
- ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0
|
||||
- </txtFileVersion>
|
||||
- <fileDescription>Forge</fileDescription>
|
||||
- <copyright>Forge</copyright>
|
||||
- <productVersion>
|
||||
- ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0
|
||||
- </productVersion>
|
||||
- <txtProductVersion>
|
||||
- ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0
|
||||
- </txtProductVersion>
|
||||
- <productName>Forge</productName>
|
||||
- <internalName>forge</internalName>
|
||||
- <originalFilename>forge-java8.exe</originalFilename>
|
||||
- </versionInfo>
|
||||
- </configuration>
|
||||
- </execution>
|
||||
- <!--extra-->
|
||||
- <execution>
|
||||
- <id>l4j-gui2</id>
|
||||
- <phase>package</phase>
|
||||
- <goals>
|
||||
- <goal>launch4j</goal>
|
||||
- </goals>
|
||||
- <configuration>
|
||||
- <headerType>gui</headerType>
|
||||
- <outfile>${project.build.directory}/forge.exe</outfile>
|
||||
- <jar>${project.build.finalName}-jar-with-dependencies.jar</jar>
|
||||
- <dontWrapJar>true</dontWrapJar>
|
||||
- <errTitle>forge</errTitle>
|
||||
- <downloadUrl>https://www.oracle.com/java/technologies/downloads/</downloadUrl>
|
||||
- <icon>src/main/config/forge.ico</icon>
|
||||
- <classPath>
|
||||
- <mainClass>forge.view.Main</mainClass>
|
||||
- <addDependencies>false</addDependencies>
|
||||
- <preCp>anything</preCp>
|
||||
- </classPath>
|
||||
- <jre>
|
||||
- <minVersion>11.0.1</minVersion>
|
||||
- <jdkPreference>jdkOnly</jdkPreference>
|
||||
- <maxHeapSize>4096</maxHeapSize>
|
||||
- <opts>
|
||||
- <opt>-Dfile.encoding=UTF-8</opt>
|
||||
- <opt>--add-opens java.base/java.lang=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.math=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/jdk.internal.misc=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.nio=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens=java.base/sun.nio.ch=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.util=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.lang.reflect=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.text=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/java.awt=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/java.awt.font=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/java.awt.image=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/java.awt.color=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/sun.awt.image=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/javax.swing=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/javax.swing.border=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/javax.swing.event=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/sun.swing=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.desktop/java.beans=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.util.concurrent=ALL-UNNAMED</opt>
|
||||
- <opt>--add-opens java.base/java.net=ALL-UNNAMED</opt>
|
||||
- <opt>-Dio.netty.tryReflectionSetAccessible=true</opt>
|
||||
- </opts>
|
||||
- </jre>
|
||||
- <versionInfo>
|
||||
- <fileVersion>
|
||||
- ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0
|
||||
- </fileVersion>
|
||||
- <txtFileVersion>
|
||||
- ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0
|
||||
- </txtFileVersion>
|
||||
- <fileDescription>Forge</fileDescription>
|
||||
- <copyright>Forge</copyright>
|
||||
- <productVersion>
|
||||
- ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0
|
||||
- </productVersion>
|
||||
- <txtProductVersion>
|
||||
- ${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.0
|
||||
- </txtProductVersion>
|
||||
- <productName>Forge</productName>
|
||||
- <internalName>forge</internalName>
|
||||
- <originalFilename>forge.exe</originalFilename>
|
||||
- </versionInfo>
|
||||
- </configuration>
|
||||
- </execution>
|
||||
- <!--extra-->
|
||||
- </executions>
|
||||
- </plugin>
|
||||
-
|
||||
<plugin>
|
||||
<groupId>org.apache.maven.plugins</groupId>
|
||||
<artifactId>maven-antrun-plugin</artifactId>
|
@ -32890,6 +32890,8 @@ with pkgs;
|
||||
|
||||
flock = callPackage ../development/tools/flock { };
|
||||
|
||||
forge-mtg = callPackage ../games/forge-mtg { };
|
||||
|
||||
freecell-solver = callPackage ../games/freecell-solver { };
|
||||
|
||||
freeciv = callPackage ../games/freeciv {
|
||||
|
Loading…
Reference in New Issue
Block a user