summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorAnderson Torres <torres.anderson.85@protonmail.com>2020-04-07 09:17:13 -0300
committerGitHub <noreply@github.com>2020-04-07 09:17:13 -0300
commit9abfffdc4a048512c5e046c047b6b5880fab6618 (patch)
treeacce7b229345befca2cd7d61e2ff048693d9ece8 /pkgs
parentfed6a3d87dc867b7366f42c0758a5209c7527df8 (diff)
parente99165095136c786cf14f72250cb4970e7db307d (diff)
downloadnixpkgs-9abfffdc4a048512c5e046c047b6b5880fab6618.tar
nixpkgs-9abfffdc4a048512c5e046c047b6b5880fab6618.tar.gz
nixpkgs-9abfffdc4a048512c5e046c047b6b5880fab6618.tar.bz2
nixpkgs-9abfffdc4a048512c5e046c047b6b5880fab6618.tar.lz
nixpkgs-9abfffdc4a048512c5e046c047b6b5880fab6618.tar.xz
nixpkgs-9abfffdc4a048512c5e046c047b6b5880fab6618.tar.zst
nixpkgs-9abfffdc4a048512c5e046c047b6b5880fab6618.zip
Merge pull request #84588 from AndersonTorres/update-rfk
robotfindskitten: 2.7182818.701 -> 2.8284271.702
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/games/robotfindskitten/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/games/robotfindskitten/default.nix b/pkgs/games/robotfindskitten/default.nix
index fa1eb338a89..73beba2e34f 100644
--- a/pkgs/games/robotfindskitten/default.nix
+++ b/pkgs/games/robotfindskitten/default.nix
@@ -4,11 +4,11 @@ with stdenv.lib;
 stdenv.mkDerivation rec {
 
   pname = "robotfindskitten";
-  version = "2.7182818.701";
+  version = "2.8284271.702";
 
   src = fetchurl {
-    url = "mirror://sourceforge/project/rfk/robotfindskitten-POSIX/mayan_apocalypse_edition/${pname}-${version}.tar.gz";
-    sha256 = "06fp6b4li50mzw83j3pkzqspm6dpgxgxw03b60xkxlkgg5qa6jbp";
+    url = "mirror://sourceforge/project/rfk/robotfindskitten-POSIX/ship_it_anyway/${pname}-${version}.tar.gz";
+    sha256 = "1bwrkxm83r9ajpkd6x03nqvmdfpf5vz6yfy0c97pq3v3ykj74082";
   };
 
   nativeBuildInputs = [ pkgconfig ];
@@ -22,7 +22,7 @@ stdenv.mkDerivation rec {
 
   meta = {
     description = "Yet another zen simulation; A simple find-the-kitten game";
-    homepage = http://robotfindskitten.org/;
+    homepage = "http://robotfindskitten.org/";
     license = licenses.gpl2;
     maintainers = [ maintainers.AndersonTorres ];
     platforms = platforms.unix;