nixpkgs-suyu/pkgs/applications/science/math/cemu-ti/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

47 lines
944 B
Nix
Raw Permalink Normal View History

2022-08-30 10:44:00 +02:00
{ stdenv
, lib
2022-08-30 10:44:00 +02:00
, fetchFromGitHub
2020-02-09 23:17:07 +01:00
, qmake
, pkg-config
, wrapQtAppsHook
2022-08-30 10:44:00 +02:00
, libarchive
, libpng
2020-02-09 23:17:07 +01:00
}:
stdenv.mkDerivation rec {
2020-02-09 23:17:07 +01:00
pname = "CEmu";
2022-08-30 10:44:00 +02:00
version = "unstable-2022-06-29";
2020-02-09 23:17:07 +01:00
src = fetchFromGitHub {
owner = "CE-Programming";
repo = "CEmu";
2022-08-30 10:44:00 +02:00
rev = "880d391ba9f8b7b2ec36ab9b45a34e9ecbf744e9";
hash = "sha256-aFwGZJceh1jEP8cEajY5wYlSaFuNhYvSoZ/E1QDfJEI=";
2020-02-09 23:17:07 +01:00
fetchSubmodules = true;
};
nativeBuildInputs = [
qmake
wrapQtAppsHook
pkg-config
2020-02-09 23:17:07 +01:00
];
buildInputs = [
libarchive
libpng
2020-02-09 23:17:07 +01:00
];
qmakeFlags = [
"gui/qt"
];
meta = with lib; {
2020-02-09 23:17:07 +01:00
description = "Third-party TI-84 Plus CE / TI-83 Premium CE emulator, focused on developer features";
mainProgram = "CEmu";
2020-02-09 23:17:07 +01:00
homepage = "https://ce-programming.github.io/CEmu";
2022-10-31 00:22:01 +01:00
license = licenses.gpl3Plus;
2020-02-09 23:17:07 +01:00
maintainers = with maintainers; [ luc65r ];
platforms = [ "x86_64-linux" "x86_64-darwin" ];
broken = stdenv.isDarwin;
2020-02-09 23:17:07 +01:00
};
}