nixpkgs/pkgs/misc/emulators/openmsx/default.nix

49 lines
1.3 KiB
Nix
Raw Normal View History

2021-01-17 02:30:45 +00:00
{ lib, stdenv, fetchFromGitHub, pkg-config
2017-09-18 03:18:01 +00:00
, python
, alsa-lib, glew, libGL, libpng
2017-09-18 03:18:01 +00:00
, libogg, libtheora, libvorbis
2020-09-11 17:41:55 +00:00
, SDL2, SDL2_image, SDL2_ttf
2017-09-18 03:18:01 +00:00
, freetype, tcl, zlib
}:
2020-04-04 22:29:15 +00:00
stdenv.mkDerivation rec {
pname = "openmsx";
2020-09-11 17:41:55 +00:00
version = "16.0";
2017-09-18 03:18:01 +00:00
src = fetchFromGitHub {
owner = "openMSX";
repo = "openMSX";
2020-09-11 17:41:55 +00:00
rev = "RELEASE_${builtins.replaceStrings ["."] ["_"] version}";
sha256 = "04sphn9ph378r0qv881riv90cgz58650jcqcwmi1mv6gbcb3img5";
2017-09-18 03:18:01 +00:00
fetchSubmodules = true;
};
2021-01-17 02:30:45 +00:00
nativeBuildInputs = [ pkg-config python ];
2017-09-18 03:18:01 +00:00
buildInputs = [ alsa-lib glew libGL libpng
2017-09-18 03:18:01 +00:00
libogg libtheora libvorbis freetype
2020-09-11 17:41:55 +00:00
SDL2 SDL2_image SDL2_ttf tcl zlib ];
2017-09-18 03:18:01 +00:00
postPatch = ''
2020-09-11 17:41:55 +00:00
cp ${./custom-nix.mk} build/custom.mk
2017-09-18 03:18:01 +00:00
'';
dontAddPrefix = true;
# Many thanks @mthuurne from OpenMSX project
# for providing support to Nixpkgs :)
TCL_CONFIG="${tcl}/lib/";
2021-01-15 13:21:58 +00:00
meta = with lib;{
2020-09-11 17:41:55 +00:00
description = "The MSX emulator that aims for perfection";
2017-09-18 03:18:01 +00:00
longDescription = ''
OpenMSX is an emulator for the MSX home computer system. Its goal is
to emulate all aspects of the MSX with 100% accuracy.
'';
2020-04-04 22:29:15 +00:00
homepage = "https://openmsx.org";
2017-09-18 03:18:01 +00:00
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix;
2020-06-30 19:39:52 +00:00
license = with licenses; [ bsd2 boost gpl2 ];
2017-09-18 03:18:01 +00:00
};
}