summary refs log tree commit diff
path: root/pkgs/games/gcs
diff options
context:
space:
mode:
authorc0bw3b <c0bw3b@users.noreply.github.com>2019-11-16 01:41:23 +0100
committerc0bw3b <c0bw3b@users.noreply.github.com>2019-11-16 01:41:23 +0100
commit9367367dfd6e0373c04650e9893deed426d48aa2 (patch)
tree7ae2c2dbeeb145848e125d30d3195fcce7322aad /pkgs/games/gcs
parenta27a14da2a592402ecb89abc040700b2cf90d3c7 (diff)
downloadnixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.tar
nixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.tar.gz
nixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.tar.bz2
nixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.tar.lz
nixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.tar.xz
nixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.tar.zst
nixpkgs-9367367dfd6e0373c04650e9893deed426d48aa2.zip
Treewide: fix URL permanent redirects
Permanent redirects on homepages and/or source URLs
as reported by Repology
Diffstat (limited to 'pkgs/games/gcs')
-rw-r--r--pkgs/games/gcs/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/games/gcs/default.nix b/pkgs/games/gcs/default.nix
index 3665467407a..f1230b739bb 100644
--- a/pkgs/games/gcs/default.nix
+++ b/pkgs/games/gcs/default.nix
@@ -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; [];