Commit b165b45b authored by Robert Schütz's avatar Robert Schütz Committed by Robert Schütz
Browse files
parent 1b27c803
Loading
Loading
Loading
Loading
+5 −4
Original line number Diff line number Diff line
@@ -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;