Merge pull request #174205 from dotlambda/cutemaze-1.3.1

cutemaze: 1.3.0 -> 1.3.1
This commit is contained in:
Thomas Tuegel
2022-05-24 10:16:59 -05:00
committed by GitHub
2 changed files with 17 additions and 6 deletions
+16 -5
View File
@@ -1,15 +1,26 @@
{ lib, stdenv, fetchurl, qmake, qttools, qtsvg, mkDerivation }:
{ lib
, stdenv
, fetchurl
, cmake
, qttools
, wrapQtAppsHook
, qtsvg
}:
mkDerivation rec {
stdenv.mkDerivation rec {
pname = "cutemaze";
version = "1.3.0";
version = "1.3.1";
src = fetchurl {
url = "https://gottcode.org/cutemaze/${pname}-${version}-src.tar.bz2";
sha256 = "sha256-h7+H2E37ZVSnlPa6ID+lNEvFtU5PfdMSlBjqBumojoU=";
sha256 = "6944931cd39e9ef202c11483b7b2b7409a068c52fa5fd4419ff938b1158c72ab";
};
nativeBuildInputs = [ qmake qttools ];
nativeBuildInputs = [
cmake
qttools
wrapQtAppsHook
];
buildInputs = [ qtsvg ];
+1 -1
View File
@@ -31555,7 +31555,7 @@ with pkgs;
curseofwar = callPackage ../games/curseofwar { SDL = null; };
curseofwar-sdl = callPackage ../games/curseofwar { ncurses = null; };
cutemaze = libsForQt5.callPackage ../games/cutemaze { };
cutemaze = qt6Packages.callPackage ../games/cutemaze { };
cuyo = callPackage ../games/cuyo { };