lol

Merge pull request #296369 from OPNA2608/update/punes

punes: 0.110 -> 0.111

authored by

Christian Kögler and committed by
GitHub
4693a3a8 594a88ed

+6 -15
+6 -15
pkgs/applications/emulators/punes/default.nix
··· 1 1 { stdenv 2 2 , lib 3 3 , fetchFromGitHub 4 - , fetchpatch 5 4 , gitUpdater 6 5 , cmake 7 6 , pkg-config ··· 17 16 , wrapQtAppsHook 18 17 }: 19 18 20 - stdenv.mkDerivation rec { 19 + stdenv.mkDerivation (finalAttrs: { 21 20 pname = "punes"; 22 - version = "0.110"; 21 + version = "0.111"; 23 22 24 23 src = fetchFromGitHub { 25 24 owner = "punesemu"; 26 25 repo = "puNES"; 27 - rev = "v${version}"; 28 - sha256 = "sha256-+hL168r40aYUjyLbWFXWk9G2srrrG1TH1gLYMliHftU="; 26 + rev = "v${finalAttrs.version}"; 27 + hash = "sha256-TIXjYkInWV3yVnvXrdHcmeWYeps5TcvkG2Xjg4roIds="; 29 28 }; 30 29 31 - patches = [ 32 - # Fixes compilation on aarch64 33 - # Remove when version > 0.110 34 - (fetchpatch { 35 - url = "https://github.com/punesemu/puNES/commit/90dd5bc90412bbd199c2716f67a24aa88b24d80f.patch"; 36 - hash = "sha256-/KNpTds4qjwyaTUebWWPlVXfuxVh6M4zOInxUfYztJg="; 37 - }) 38 - ]; 39 - 40 30 nativeBuildInputs = [ 41 31 cmake 42 32 pkg-config ··· 73 63 description = "Qt-based Nintendo Entertainment System emulator and NSF/NSFe Music Player"; 74 64 mainProgram = "punes"; 75 65 homepage = "https://github.com/punesemu/puNES"; 66 + changelog = "https://github.com/punesemu/puNES/blob/v${finalAttrs.version}/ChangeLog"; 76 67 license = licenses.gpl2Plus; 77 68 maintainers = with maintainers; [ OPNA2608 ]; 78 69 platforms = with platforms; linux ++ freebsd ++ openbsd ++ windows; 79 70 }; 80 - } 71 + })