yuzu-ea: init at 1377

This commit is contained in:
IvarWithoutBones
2021-01-27 02:15:48 +01:00
parent d66c499890
commit 44f4a61fc7
3 changed files with 33 additions and 12 deletions
+14 -3
View File
@@ -1,11 +1,11 @@
{ branch ? "mainline", pkgs }:
{ branch ? "mainline", libsForQt5, fetchFromGitHub }:
let
inherit (pkgs) libsForQt5 fetchFromGitHub;
inherit libsForQt5 fetchFromGitHub;
in {
mainline = libsForQt5.callPackage ./base.nix rec {
pname = "yuzu-mainline";
version = "517";
branch = branch;
branchName = branch;
src = fetchFromGitHub {
owner = "yuzu-emu";
repo = "yuzu-mainline";
@@ -14,4 +14,15 @@ in {
fetchSubmodules = true;
};
};
early-access = libsForQt5.callPackage ./base.nix rec {
pname = "yuzu-ea";
version = "1377";
branchName = branch;
src = fetchFromGitHub {
owner = "pineappleEA";
repo = "pineapple-src";
rev = "EA-${version}";
sha256 = "0jjddmcqbkns5iqjwqh51hpjviw5j12n49jwfq7xwrsns6vbpqkf";
};
};
}.${branch}