cemu: init at 1.3

This commit is contained in:
luc65r 2020-02-09 23:17:07 +01:00
parent e1efcdfd69
commit 94c60990fc
2 changed files with 55 additions and 0 deletions

View File

@ -0,0 +1,53 @@
{ fetchFromGitHub
, stdenv
, mkDerivation
, SDL2
, libGL
, libarchive
, libusb
, qtbase
, qmake
, git
, libpng_apng
, pkgconfig
}:
mkDerivation rec {
pname = "CEmu";
version = "1.3";
src = fetchFromGitHub {
owner = "CE-Programming";
repo = "CEmu";
rev = "v${version}";
sha256 = "1wcdnzcqscawj6jfdj5wwmw9g9vsd6a1rx0rrramakxzf8b7g47r";
fetchSubmodules = true;
};
nativeBuildInputs = [
qmake
git
pkgconfig
];
buildInputs = [
SDL2
libGL
libarchive
libusb
qtbase
libpng_apng
];
qmakeFlags = [
"gui/qt"
];
meta = with stdenv.lib; {
changelog = "https://github.com/CE-Programming/CEmu/releases/tag/v${version}";
description = "Third-party TI-84 Plus CE / TI-83 Premium CE emulator, focused on developer features";
homepage = "https://ce-programming.github.io/CEmu";
license = licenses.gpl3;
maintainers = with maintainers; [ luc65r ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
};
}

View File

@ -2348,6 +2348,8 @@ in
inherit (darwin.apple_sdk.frameworks) Carbon IOKit;
};
cemu = qt5.callPackage ../applications/science/math/cemu { };
isomd5sum = callPackage ../tools/cd-dvd/isomd5sum { };
mdf2iso = callPackage ../tools/cd-dvd/mdf2iso { };