3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/applications/emulators/yuzu/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
801 B
Nix
Raw Normal View History

2021-01-25 18:34:06 +00:00
{ branch ? "mainline", libsForQt5, fetchFromGitHub }:
let
2021-01-25 18:34:06 +00:00
inherit libsForQt5 fetchFromGitHub;
in {
mainline = libsForQt5.callPackage ./base.nix rec {
pname = "yuzu-mainline";
version = "953";
2021-01-25 18:34:06 +00:00
branchName = branch;
src = fetchFromGitHub {
owner = "yuzu-emu";
repo = "yuzu-mainline";
rev = "mainline-0-${version}";
sha256 = "0p07gybyhr6flzmhz92qlrwcq7l37c2wmcxw8sbrvhj2pgaaw9ic";
fetchSubmodules = true;
};
2020-04-02 16:36:10 +01:00
};
2021-01-25 18:34:06 +00:00
early-access = libsForQt5.callPackage ./base.nix rec {
pname = "yuzu-ea";
version = "2557";
2021-01-25 18:34:06 +00:00
branchName = branch;
src = fetchFromGitHub {
owner = "pineappleEA";
repo = "pineapple-src";
rev = "EA-${version}";
sha256 = "013xxgyn8y5fv0xbrm0zfl9xmi0gx4hpflrbjskg1hcvb2bjqyvj";
2021-01-25 18:34:06 +00:00
};
};
}.${branch}