flare: 1.12rc2 -> 1.12

This commit is contained in:
Nguyễn Gia Phong 2021-08-03 14:57:06 +07:00
parent 303e44b3c1
commit b38d8b9960
No known key found for this signature in database
GPG Key ID: 27148B2C06A2224B
3 changed files with 5 additions and 5 deletions

View File

@ -1,7 +1,7 @@
{ lib, buildEnv, callPackage, makeWrapper, Cocoa }: { lib, buildEnv, callPackage, makeWrapper, Cocoa }:
buildEnv { buildEnv {
name = "flare-1.12rc2"; name = "flare-1.12";
paths = [ paths = [
(callPackage ./engine.nix { inherit Cocoa; }) (callPackage ./engine.nix { inherit Cocoa; })

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "flare-engine"; pname = "flare-engine";
version = "1.12rc2"; version = "1.12";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "flareteam"; owner = "flareteam";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "10il9dpbcka1w5glmhv48bqwww44csmhq426lvsc7z84444gvvgq"; sha256 = "0swav6fzz970wj4iic3b7y06haa05720s2wivc8w7wcw9nzcac7j";
}; };
patches = [ ./desktop.patch ]; patches = [ ./desktop.patch ];

View File

@ -2,13 +2,13 @@
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
pname = "flare-game"; pname = "flare-game";
version = "1.12rc2"; version = "1.12";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "flareteam"; owner = "flareteam";
repo = pname; repo = pname;
rev = "v${version}"; rev = "v${version}";
sha256 = "0k9fnbaqfgmih8bd0sh3kbk6f6v74i95wrbkij48gp48pq8yqbf9"; sha256 = "15k9r7w587pvkzrln0670hhq5fzif8k7xmrhb0nl3z3fi6dw3mmc";
}; };
nativeBuildInputs = [ cmake ]; nativeBuildInputs = [ cmake ];