mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 13:41:26 +00:00
54 lines
994 B
Nix
54 lines
994 B
Nix
|
{ 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" ];
|
||
|
};
|
||
|
}
|