flare: 1.12 -> 1.13

Also add myself as a maintainer.
This commit is contained in:
Nguyễn Gia Phong 2022-02-06 14:44:03 +07:00
parent 554d2d8aa2
commit 02c976001a
No known key found for this signature in database
GPG Key ID: 27148B2C06A2224B
3 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
{ lib, buildEnv, callPackage, makeWrapper, Cocoa }: { lib, buildEnv, callPackage, makeWrapper, Cocoa }:
buildEnv { buildEnv {
name = "flare-1.12"; name = "flare-1.13";
paths = [ paths = [
(callPackage ./engine.nix { inherit Cocoa; }) (callPackage ./engine.nix { inherit Cocoa; })
@ -17,7 +17,7 @@ buildEnv {
meta = with lib; { meta = with lib; {
description = "Fantasy action RPG using the FLARE engine"; description = "Fantasy action RPG using the FLARE engine";
homepage = "https://flarerpg.org/"; homepage = "https://flarerpg.org/";
maintainers = [ maintainers.aanderse ]; maintainers = with maintainers; [ aanderse McSinyx ];
license = [ licenses.gpl3 licenses.cc-by-sa-30 ]; license = [ licenses.gpl3 licenses.cc-by-sa-30 ];
platforms = platforms.unix; platforms = platforms.unix;
}; };

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "flare-engine"; pname = "flare-engine";
version = "1.12"; version = "1.13";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "flareteam"; owner = "flareteam";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0swav6fzz970wj4iic3b7y06haa05720s2wivc8w7wcw9nzcac7j"; sha256 = "sha256-53JCjVu6vG4js5UryQIccpD8qdS+EfxSyV4v2LOYe+c=";
}; };
patches = [ ./desktop.patch ]; patches = [ ./desktop.patch ];
@ -20,7 +20,7 @@ stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "Free/Libre Action Roleplaying Engine"; description = "Free/Libre Action Roleplaying Engine";
homepage = "https://github.com/flareteam/flare-engine"; homepage = "https://github.com/flareteam/flare-engine";
maintainers = [ maintainers.aanderse ]; maintainers = with maintainers; [ aanderse McSinyx ];
license = [ licenses.gpl3 ]; license = [ licenses.gpl3 ];
platforms = platforms.unix; platforms = platforms.unix;
}; };

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "flare-game"; pname = "flare-game";
version = "1.12"; version = "1.13";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "flareteam"; owner = "flareteam";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "15k9r7w587pvkzrln0670hhq5fzif8k7xmrhb0nl3z3fi6dw3mmc"; sha256 = "sha256-zfZTHw8obq5/z9+mCY0LIq9suvyh91ypqpxc3dNxI4o=";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];
@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
meta = with lib; { meta = with lib; {
description = "Fantasy action RPG using the FLARE engine"; description = "Fantasy action RPG using the FLARE engine";
homepage = "https://github.com/flareteam/flare-game"; homepage = "https://github.com/flareteam/flare-game";
maintainers = [ maintainers.aanderse ]; maintainers = with maintainers; [ aanderse McSinyx ];
license = [ licenses.cc-by-sa-30 ]; license = [ licenses.cc-by-sa-30 ];
platforms = platforms.unix; platforms = platforms.unix;
}; };