summary refs log tree commit diff
path: root/pkgs/misc
diff options
context:
space:
mode:
authorAndrew Childs <lorne@cons.org.nz>2020-01-11 22:56:01 +0900
committerAndrew Childs <lorne@cons.org.nz>2020-01-11 23:01:40 +0900
commit03c43615990942d58a4c02f36ce13c66181614ff (patch)
tree15bc9bd569f1aedc7aca831f1488fc11e226a9d3 /pkgs/misc
parent859637e3f27a3ebe1172ddde1a464676a2fc214f (diff)
downloadnixpkgs-03c43615990942d58a4c02f36ce13c66181614ff.tar
nixpkgs-03c43615990942d58a4c02f36ce13c66181614ff.tar.gz
nixpkgs-03c43615990942d58a4c02f36ce13c66181614ff.tar.bz2
nixpkgs-03c43615990942d58a4c02f36ce13c66181614ff.tar.lz
nixpkgs-03c43615990942d58a4c02f36ce13c66181614ff.tar.xz
nixpkgs-03c43615990942d58a4c02f36ce13c66181614ff.tar.zst
nixpkgs-03c43615990942d58a4c02f36ce13c66181614ff.zip
libretro.snes9x: 29b78d -> 04692e
Upstream has broken git history [1], so the current version cannot be
fetched. The required patches have been upstreamed [2], and we hope
that upstream will be more careful with their git history.

The previous commit can still be viewed on github [3], but is not the
ancestor of any fetchable ref.

[1] https://github.com/libretro/snes9x/issues/199
[2] https://github.com/snes9xgit/snes9x/pull/588
[3] https://github.com/libretro/snes9x/commit/29b78df8c9f0f48ed4605d08a187a134b3b316d6
Diffstat (limited to 'pkgs/misc')
-rw-r--r--pkgs/misc/emulators/retroarch/cores.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/misc/emulators/retroarch/cores.nix b/pkgs/misc/emulators/retroarch/cores.nix
index 45ed31168f0..2176d53628f 100644
--- a/pkgs/misc/emulators/retroarch/cores.nix
+++ b/pkgs/misc/emulators/retroarch/cores.nix
@@ -786,10 +786,11 @@ in with stdenv.lib.licenses;
 
   snes9x = (mkLibRetroCore rec {
     core = "snes9x";
-    src = fetchRetro {
+    src = fetchFromGitHub {
+      owner = "snes9xgit";
       repo = core;
-      rev = "29b78df8c9f0f48ed4605d08a187a134b3b316d6";
-      sha256 = "004h1pkxvbn4zlh8bqs6z17k04jw5wzbwklpgvmb7hbxshsi4qid";
+      rev = "04692e1ee45cc647423774ee17c63208c2713638";
+      sha256 = "09p9m85fxwrrrapjb08rcxknpgq5d6a87arrm1jn94r56glxlcfa";
     };
     description = "Port of SNES9x git to libretro";
     license = "Non-commercial";