summary refs log tree commit diff
path: root/pkgs/misc/emulators/openmsx/default.nix
blob: 61d416e17ac8e82f4808154c5aad491216ffba63 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{ lib, stdenv, fetchFromGitHub, pkg-config
, python
, alsa-lib, glew, libGL, libpng
, libogg, libtheora, libvorbis
, SDL2, SDL2_image, SDL2_ttf
, freetype, tcl, zlib
}:

stdenv.mkDerivation rec {
  pname = "openmsx";
  version = "16.0";

  src = fetchFromGitHub {
    owner = "openMSX";
    repo = "openMSX";
    rev = "RELEASE_${builtins.replaceStrings ["."] ["_"] version}";
    sha256 = "04sphn9ph378r0qv881riv90cgz58650jcqcwmi1mv6gbcb3img5";
    fetchSubmodules = true;
  };

  nativeBuildInputs = [ pkg-config python ];

  buildInputs = [ alsa-lib glew libGL libpng
    libogg libtheora libvorbis freetype
    SDL2 SDL2_image SDL2_ttf 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;{
    description = "The 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.
    '';
    homepage = "https://openmsx.org";
    maintainers = with maintainers; [ AndersonTorres ];
    platforms = platforms.unix;
    license = with licenses; [ bsd2 boost gpl2 ];
  };
}