summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Schütz <nix@dotlambda.de>2023-01-11 19:44:50 -0800
committerRobert Schütz <github@dotlambda.de>2023-01-13 14:24:26 -0800
commitb165b45b2055bd30ff7a03b45f1be0a7d77820da (patch)
treea56ffcdfd85db2cb0c98388b51feff599e92f296
parent1b27c803ec12ca3651892a85dd549575b7dd0043 (diff)
downloadnixpkgs-b165b45b2055bd30ff7a03b45f1be0a7d77820da.tar
nixpkgs-b165b45b2055bd30ff7a03b45f1be0a7d77820da.tar.gz
nixpkgs-b165b45b2055bd30ff7a03b45f1be0a7d77820da.tar.bz2
nixpkgs-b165b45b2055bd30ff7a03b45f1be0a7d77820da.tar.lz
nixpkgs-b165b45b2055bd30ff7a03b45f1be0a7d77820da.tar.xz
nixpkgs-b165b45b2055bd30ff7a03b45f1be0a7d77820da.tar.zst
nixpkgs-b165b45b2055bd30ff7a03b45f1be0a7d77820da.zip
cutemaze: 1.3.1 -> 1.3.2
https://github.com/gottcode/cutemaze/releases/tag/v1.3.2
-rw-r--r--pkgs/games/cutemaze/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/games/cutemaze/default.nix b/pkgs/games/cutemaze/default.nix
index ae6ade155f2..a141591211c 100644
--- a/pkgs/games/cutemaze/default.nix
+++ b/pkgs/games/cutemaze/default.nix
@@ -11,11 +11,11 @@
 
 stdenv.mkDerivation rec {
   pname = "cutemaze";
-  version = "1.3.1";
+  version = "1.3.2";
 
   src = fetchurl {
-    url = "https://gottcode.org/cutemaze/${pname}-${version}-src.tar.bz2";
-    sha256 = "6944931cd39e9ef202c11483b7b2b7409a068c52fa5fd4419ff938b1158c72ab";
+    url = "https://gottcode.org/cutemaze/${pname}-${version}.tar.bz2";
+    hash = "sha256-hjDlY18O+VDJR68vwrIZwsQAa40xU+V3bCAA4GFHJEQ=";
   };
 
   nativeBuildInputs = [
@@ -36,8 +36,9 @@ stdenv.mkDerivation rec {
   '';
 
   meta = with lib; {
-    homepage = "https://gottcode.org/cutemaze/";
+    changelog = "https://github.com/gottcode/cutemaze/blob/v${version}/ChangeLog";
     description = "Simple, top-down game in which mazes are randomly generated";
+    homepage = "https://gottcode.org/cutemaze/";
     license = licenses.gpl3Plus;
     maintainers = with maintainers; [ dotlambda ];
     platforms = platforms.unix;