Skip to content

Instantly share code, notes, and snippets.

@cleverca22
Last active September 19, 2020 04:02
Show Gist options
  • Save cleverca22/5c0d36889c72e1da61cfac42c3c64ccd to your computer and use it in GitHub Desktop.
Save cleverca22/5c0d36889c72e1da61cfac42c3c64ccd to your computer and use it in GitHub Desktop.
{ pkgs, ... }:
{
environment.systemPackages = [ pkgs.dolphinEmuReallyMaster ];
nixpkgs.overlays = [ (self: super: {
dolphinEmuReallyMaster = self.dolphinEmuMaster.overrideAttrs (old: rec {
src = builtins.fetchGit "https://github.com/dolphin-emu/dolphin";
version = "dolphin-really-master";
cmakeFlags = [
"-DUSE_SHARED_ENET=ON"
"-DENABLE_LTO=ON"
"-DDOLPHIN_WC_REVISION=${src.rev}"
"-DDOLPHIN_WC_DESCRIBE=really-master"
"-DDOLPHIN_WC_BRANCH=master"
];
});
}) ];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment