nixos-configs/pkgs/yuzu/compat-list.nix

21 lines
411 B
Nix
Raw Normal View History

2024-07-07 16:55:16 -04:00
{
stdenv,
fetchFromGitHub,
...
}:
stdenv.mkDerivation {
pname = "yuzu-compatibility-list";
version = "unstable-2024-02-26";
src = fetchFromGitHub {
owner = "flathub";
repo = "org.yuzu_emu.yuzu";
rev = "9c2032a3c7e64772a8112b77ed8b660242172068";
hash = "sha256-ITh/W4vfC9w9t+TJnPeTZwWifnhTNKX54JSSdpgaoBk=";
};
buildCommand = ''
cp $src/compatibility_list.json $out
'';
}