Skip to content

Commit

Permalink
cemu-ti: unstable-2022-06-29 -> 2.0 (NixOS#342156)
Browse files Browse the repository at this point in the history
  • Loading branch information
h7x4 committed Sep 20, 2024
2 parents 52cbc8d + 0c68998 commit b0113fe
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions pkgs/applications/science/math/cemu-ti/default.nix
Original file line number Diff line number Diff line change
@@ -1,39 +1,39 @@
{ stdenv
, lib
, fetchFromGitHub
, qmake
, cmake
, pkg-config
, wrapQtAppsHook
, qt6
, libarchive
, libpng
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "CEmu";
version = "unstable-2022-06-29";
version = "2.0";
src = fetchFromGitHub {
owner = "CE-Programming";
repo = "CEmu";
rev = "880d391ba9f8b7b2ec36ab9b45a34e9ecbf744e9";
hash = "sha256-aFwGZJceh1jEP8cEajY5wYlSaFuNhYvSoZ/E1QDfJEI=";
rev = "v${finalAttrs.version}";
hash = "sha256-fohsIJrvPDMmYHoPbmYQlKLMnj/B3XEBaerZYuqxvd8=";
fetchSubmodules = true;
};

sourceRoot = "${finalAttrs.src.name}/gui/qt/";


nativeBuildInputs = [
qmake
wrapQtAppsHook
cmake
qt6.wrapQtAppsHook
pkg-config
];

buildInputs = [
qt6.qtbase
libarchive
libpng
];

qmakeFlags = [
"gui/qt"
];

meta = with lib; {
description = "Third-party TI-84 Plus CE / TI-83 Premium CE emulator, focused on developer features";
mainProgram = "CEmu";
Expand All @@ -43,4 +43,4 @@ stdenv.mkDerivation rec {
platforms = [ "x86_64-linux" "x86_64-darwin" ];
broken = stdenv.isDarwin;
};
}
})

0 comments on commit b0113fe

Please sign in to comment.