lol

Merge pull request #287889 from trofi/ripes-gcc-13-fix-update

ripes: 2.2.6 -> 2.2.6-unstable-2024-01-02

authored by

kirillrdy and committed by
GitHub
e3474e1d a6d0d38f

+11 -7
+10 -6
pkgs/applications/emulators/ripes/default.nix
··· 1 1 { lib 2 - , mkDerivation 2 + , stdenv 3 3 , fetchFromGitHub 4 4 , pkg-config 5 5 , qtbase ··· 8 8 , wrapQtAppsHook 9 9 , cmake 10 10 , python3 11 - , stdenv 11 + , unstableGitUpdater 12 12 }: 13 13 14 - mkDerivation rec { 14 + stdenv.mkDerivation rec { 15 15 pname = "ripes"; 16 - version = "2.2.6"; 16 + # Pulling unstable version as latest stable does not build against gcc-13. 17 + version = "2.2.6-unstable-2024-01-02"; 17 18 18 19 src = fetchFromGitHub { 19 20 owner = "mortbopet"; 20 21 repo = "Ripes"; 21 - rev = "v${version}"; 22 + rev = "0faf41b669a93a1944707cd7d111a5e9241425fe"; 22 23 fetchSubmodules = true; 23 - sha256 = "sha256-fRkab0G2zjK1VYzH21yhL7Cr0rS4I8ir8gwH9ALy60A="; 24 + hash = "sha256-3+jibS1mGYBy9jmucytc7GvB1ZKRfh7aXtDty77hA3k="; 24 25 }; 25 26 26 27 nativeBuildInputs = [ ··· 49 50 runHook postInstall 50 51 ''; 51 52 53 + passthru.updateScript = unstableGitUpdater { }; 54 + 52 55 meta = with lib; { 53 56 description = "A graphical processor simulator and assembly editor for the RISC-V ISA"; 54 57 homepage = "https://github.com/mortbopet/Ripes"; 55 58 license = licenses.mit; 56 59 platforms = platforms.unix; 60 + mainProgram = "Ripes"; 57 61 maintainers = with maintainers; [ rewine ]; 58 62 }; 59 63 }
+1 -1
pkgs/top-level/all-packages.nix
··· 2804 2804 2805 2805 retrofe = callPackage ../applications/emulators/retrofe { }; 2806 2806 2807 - ripes = libsForQt5.callPackage ../applications/emulators/ripes { }; 2807 + ripes = qt6Packages.callPackage ../applications/emulators/ripes { }; 2808 2808 2809 2809 rpcemu = callPackage ../applications/emulators/rpcemu { }; 2810 2810