numworks-epsilon: 15.3.2 -> 15.5.0 (#122760)
Co-authored-by: erikbackman <erikbackman@users.noreply.github.com>
This commit is contained in:
parent
ba1ab15384
commit
5b143ccc91
@ -0,0 +1,12 @@
|
|||||||
|
diff --git a/ion/src/simulator/linux/Makefile b/ion/src/simulator/linux/Makefile
|
||||||
|
index ca7da03fa..b05bba115 100644
|
||||||
|
--- a/ion/src/simulator/linux/Makefile
|
||||||
|
+++ b/ion/src/simulator/linux/Makefile
|
||||||
|
@@ -28,7 +28,6 @@ ion_src += $(addprefix ion/src/simulator/shared/, \
|
||||||
|
collect_registers.cpp \
|
||||||
|
haptics.cpp \
|
||||||
|
journal.cpp \
|
||||||
|
- platform_action_modifier_ctrl.cpp \
|
||||||
|
state_file.cpp \
|
||||||
|
)
|
||||||
|
|
@ -2,6 +2,8 @@
|
|||||||
, lib
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, libpng
|
, libpng
|
||||||
|
, libjpeg
|
||||||
|
, freetype
|
||||||
, xorg
|
, xorg
|
||||||
, python3
|
, python3
|
||||||
, imagemagick
|
, imagemagick
|
||||||
@ -11,18 +13,20 @@
|
|||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "numworks-epsilon";
|
pname = "numworks-epsilon";
|
||||||
version = "15.3.2";
|
version = "15.5.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "numworks";
|
owner = "numworks";
|
||||||
repo = "epsilon";
|
repo = "epsilon";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1q34dilyypiggjs16486jm122yf20wcigqxvspc77ig9albaxgh5";
|
sha256 = "fPBO3FzZ4k5OxG+Ifc6R/au4Te974HNKAEdHz+aFdSg=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
libpng
|
libpng
|
||||||
|
libjpeg
|
||||||
|
freetype
|
||||||
xorg.libXext
|
xorg.libXext
|
||||||
python3
|
python3
|
||||||
imagemagick
|
imagemagick
|
||||||
@ -33,6 +37,12 @@ stdenv.mkDerivation rec {
|
|||||||
"PLATFORM=simulator"
|
"PLATFORM=simulator"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
# Remove make rule Introduced in cba596dde7
|
||||||
|
# which causes it to not build with nix
|
||||||
|
./0001-ion-linux-makerules.patch
|
||||||
|
];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
runHook preInstall
|
runHook preInstall
|
||||||
|
|
||||||
@ -44,7 +54,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Emulator for Epsilon, a High-performance graphing calculator operating system";
|
description = "Simulator for Epsilon, a High-performance graphing calculator operating system";
|
||||||
homepage = "https://numworks.com/";
|
homepage = "https://numworks.com/";
|
||||||
license = licenses.cc-by-nc-sa-40;
|
license = licenses.cc-by-nc-sa-40;
|
||||||
maintainers = with maintainers; [ erikbackman ];
|
maintainers = with maintainers; [ erikbackman ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user