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