Treewide: fix URL permanent redirects

Permanent redirects on homepages and/or source URLs
as reported by Repology
This commit is contained in:
c0bw3b
2019-11-16 01:41:23 +01:00
parent a27a14da2a
commit 9367367dfd
53 changed files with 73 additions and 73 deletions

View File

@@ -47,14 +47,14 @@ stdenv.mkDerivation {
'' + optionalString withCrashReporter ''
wrapQtApp "$out/libexec/arxcrashreporter"
'';
meta = {
description = ''
A cross-platform, open source port of Arx Fatalis, a 2002
first-person role-playing game / dungeon crawler
developed by Arkane Studios.
'';
homepage = http://arx-libertatis.org/;
homepage = https://arx-libertatis.org/;
license = licenses.gpl3;
maintainers = with maintainers; [ rnhmjoj ];
platforms = platforms.linux;

View File

@@ -49,7 +49,7 @@ in stdenv.mkDerivation rec {
cd ../toolkit
ant
cd ../gcs
ant
@@ -60,15 +60,15 @@ in stdenv.mkDerivation rec {
mkdir -p $out/bin $out/share/java
find gcs/libraries toolkit/libraries apple_stubs/ \( -name '*.jar' -and -not -name '*-src.jar' \) -exec cp '{}' $out/share/java ';'
makeWrapper ${jre8}/bin/java $out/bin/gcs \
--set GCS_LIBRARY ${library} \
--add-flags "-cp $out/share/java/gcs-${version}.jar com.trollworks.gcs.app.GCS"
'';
'';
meta = with stdenv.lib; {
description = "A stand-alone, interactive, character sheet editor for the GURPS 4th Edition roleplaying game system";
homepage = http://gurpscharactersheet.com/;
homepage = https://gurpscharactersheet.com/;
license = licenses.mpl20;
platforms = platforms.all;
maintainers = with maintainers; [];