nixpkgs/pkgs/development/compilers/rgbds/default.nix

37 lines
1.3 KiB
Nix
Raw Normal View History

{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.
2016-03-09 04:42:22 +00:00
stdenv.mkDerivation rec {
pname = "rgbds";
2019-11-29 12:02:35 +00:00
version = "0.3.9";
2016-03-09 04:42:22 +00:00
src = fetchFromGitHub {
owner = "rednex";
2016-03-09 04:42:22 +00:00
repo = "rgbds";
rev = "v${version}";
2019-11-29 12:02:35 +00:00
sha256 = "0pzd9ig3ahpgq7jbj82grllxx1v01d620insr2m8h0c6jj25n5hv";
2016-03-09 04:42:22 +00:00
};
nativeBuildInputs = [ bison flex pkg-config libpng ];
2016-03-09 04:42:22 +00:00
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 (PNGtoGame 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 ];
2016-03-09 04:42:22 +00:00
platforms = platforms.all;
};
}