nixpkgs/pkgs/applications/science/math/cemu/default.nix

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

58 lines
1.1 KiB
Nix
Raw Normal View History

2020-02-09 22:17:07 +00:00
{ fetchFromGitHub
, lib
2020-02-09 22:17:07 +00:00
, SDL2
, libGL
, libarchive
2020-04-28 03:29:39 +00:00
, libusb-compat-0_1
2020-02-09 22:17:07 +00:00
, qtbase
, qmake
, git
, libpng
, pkg-config
, wrapQtAppsHook
, stdenv
2020-02-09 22:17:07 +00:00
}:
stdenv.mkDerivation rec {
2020-02-09 22:17:07 +00:00
pname = "CEmu";
version = "1.3";
src = fetchFromGitHub {
owner = "CE-Programming";
repo = "CEmu";
rev = "v${version}";
sha256 = "1wcdnzcqscawj6jfdj5wwmw9g9vsd6a1rx0rrramakxzf8b7g47r";
fetchSubmodules = true;
};
nativeBuildInputs = [
qmake
git
wrapQtAppsHook
pkg-config
2020-02-09 22:17:07 +00:00
];
buildInputs = [
SDL2
libGL
libarchive
2020-04-28 03:29:39 +00:00
libusb-compat-0_1
2020-02-09 22:17:07 +00:00
qtbase
libpng
2020-02-09 22:17:07 +00:00
];
qmakeFlags = [
"gui/qt"
"CONFIG+=ltcg"
2020-02-09 22:17:07 +00:00
];
meta = with lib; {
2020-02-09 22:17:07 +00:00
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" ];
broken = stdenv.isDarwin;
2020-02-09 22:17:07 +00:00
};
}