depot/third_party/nixpkgs/pkgs/by-name/op/openmsx/package.nix

81 lines
1.4 KiB
Nix

{
lib,
stdenv,
fetchFromGitHub,
pkg-config,
SDL2,
SDL2_image,
SDL2_ttf,
alsa-lib,
freetype,
glew,
libGL,
libogg,
libpng,
libtheora,
libvorbis,
python3,
tcl,
zlib,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "openmsx";
version = "20_0";
src = fetchFromGitHub {
owner = "openMSX";
repo = "openMSX";
rev = "RELEASE_${builtins.replaceStrings [ "." ] [ "_" ] finalAttrs.version}";
hash = "sha256-iY+oZ7fHZnnEGunM4kOxOGH2Biqj2PfdLhbT8J4mYrA=";
fetchSubmodules = true;
};
nativeBuildInputs = [
pkg-config
python3
];
buildInputs = [
SDL2
SDL2_image
SDL2_ttf
alsa-lib
freetype
glew
libGL
libogg
libpng
libtheora
libvorbis
tcl
zlib
];
postPatch = ''
cp ${./custom-nix.mk} build/custom.mk
'';
dontAddPrefix = true;
# Many thanks @mthuurne from OpenMSX project for providing support to
# Nixpkgs! :)
TCL_CONFIG = "${tcl}/lib/";
meta = with lib; {
homepage = "https://openmsx.org";
description = "MSX emulator that aims for perfection";
longDescription = ''
OpenMSX is an emulator for the MSX home computer system. Its goal is
to emulate all aspects of the MSX with 100% accuracy.
'';
license = with licenses; [
bsd2
boost
gpl2Plus
];
maintainers = with maintainers; [ AndersonTorres ];
platforms = platforms.unix;
mainProgram = "openmsx";
};
})