summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndersonTorres <torres.anderson.85@protonmail.com>2022-07-30 21:01:42 -0300
committergithub-actions[bot] <github-actions[bot]@users.noreply.github.com>2022-07-31 13:43:33 +0000
commit65912f3432094e0984ddc02a2fc4c504ea02164f (patch)
treeb5d644403f615817072d412f84aa04b026af7ee3
parentMerge pull request #184202 from NixOS/backport-178873-to-release-22.05 (diff)
downloadnixpkgs-origin/backport-184048-to-release-22.05.tar.gz
(cherry picked from commit dd91058dd6c33aab8de94bc206c6f836ccafdb2c)
-rw-r--r--pkgs/applications/emulators/bsnes/ares/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/applications/emulators/bsnes/ares/default.nix b/pkgs/applications/emulators/bsnes/ares/default.nix
index 4cc449ee49f4..9935e51740a1 100644
--- a/pkgs/applications/emulators/bsnes/ares/default.nix
+++ b/pkgs/applications/emulators/bsnes/ares/default.nix
@@ -19,13 +19,13 @@
stdenv.mkDerivation rec {
pname = "ares";
- version = "128";
+ version = "129";
src = fetchFromGitHub {
owner = "ares-emulator";
repo = "ares";
rev = "v${version}";
- sha256 = "sha256-Ojf1kyColBK0S3DwXjGaAZSl0ljhgiXkfKC11BL2fEc=";
+ hash = "sha256-prfvoGtbnsl/1ahx98jBOgT64W566GoUtE8rIOF7lYc=";
};
patches = [
@@ -56,18 +56,18 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
makeFlags = [
- "-C desktop-ui"
+ "hiro=gtk3"
"local=false"
"openmp=true"
- "hiro=gtk3"
"prefix=$(out)"
+ "-C desktop-ui"
];
meta = with lib; {
homepage = "https://ares.dev";
description = "Open-source multi-system emulator with a focus on accuracy and preservation";
license = licenses.isc;
- maintainers = with maintainers; [ Madouura ];
+ maintainers = with maintainers; [ Madouura AndersonTorres ];
platforms = platforms.linux;
};
}