summary refs log tree commit diff
path: root/pkgs/development/compilers/rgbds/default.nix
blob: bf2594b9bf4cd92d33874c4b46a0ed2a67371eae (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
{stdenv, fetchFromGitHub, bison, flex, pkg-config, libpng}:

# TODO: byacc is the recommended parser generator but due to https://github.com/rednex/rgbds/issues/333
# it does not work for the moment. We should switch back to byacc as soon as the fix is integrated
# in a published version.

stdenv.mkDerivation rec {
  pname = "rgbds";
  version = "0.3.9";
  src = fetchFromGitHub {
    owner = "rednex";
    repo = "rgbds";
    rev = "v${version}";
    sha256 = "0pzd9ig3ahpgq7jbj82grllxx1v01d620insr2m8h0c6jj25n5hv";
  };
  nativeBuildInputs = [ bison flex pkg-config libpng ];
  installFlags = [ "PREFIX=\${out}" ];

  meta = with stdenv.lib; {
    homepage = https://rednex.github.io/rgbds/;
    description = "A free assembler/linker package for the Game Boy and Game Boy Color";
    license = licenses.mit;
    longDescription =
      ''RGBDS (Rednex Game Boy Development System) is a free assembler/linker package for the Game Boy and Game Boy Color. It consists of:

          - rgbasm (assembler)
          - rgblink (linker)
          - rgbfix (checksum/header fixer)
          - rgbgfx (PNG‐to‐Game Boy graphics converter)

        This is a fork of the original RGBDS which aims to make the programs more like other UNIX tools.
      '';
    maintainers = with maintainers; [ matthewbauer ];
    platforms = platforms.all;
  };
}