2021-01-22 11:25:31 +00:00
|
|
|
|
{lib, stdenv, fetchFromGitHub, bison, flex, pkg-config, libpng}:
|
2019-05-07 13:11:42 +01:00
|
|
|
|
|
2016-03-09 04:42:22 +00:00
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
|
pname = "rgbds";
|
2022-01-03 10:28:52 +00:00
|
|
|
|
version = "0.5.2";
|
2016-03-09 04:42:22 +00:00
|
|
|
|
src = fetchFromGitHub {
|
2021-08-06 20:50:09 +01:00
|
|
|
|
owner = "gbdev";
|
2016-03-09 04:42:22 +00:00
|
|
|
|
repo = "rgbds";
|
|
|
|
|
rev = "v${version}";
|
2022-01-03 10:28:52 +00:00
|
|
|
|
sha256 = "sha256-/GjxdB3Nt+XuKKQWjU12mS91U4FFoeP+9t0L+HsB/o8=";
|
2016-03-09 04:42:22 +00:00
|
|
|
|
};
|
2022-01-03 10:28:52 +00:00
|
|
|
|
nativeBuildInputs = [ bison flex pkg-config ];
|
|
|
|
|
buildInputs = [ libpng ];
|
|
|
|
|
NIX_CFLAGS_COMPILE = lib.optional stdenv.isDarwin "-fno-lto";
|
|
|
|
|
installFlags = [ "PREFIX=${placeholder "out"}" ];
|
2016-03-09 04:42:22 +00:00
|
|
|
|
|
2021-01-22 11:25:31 +00:00
|
|
|
|
meta = with lib; {
|
2021-08-06 20:50:09 +01:00
|
|
|
|
homepage = "https://rgbds.gbdev.io/";
|
2019-05-07 13:11:42 +01:00
|
|
|
|
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.
|
|
|
|
|
'';
|
2020-09-24 08:39:03 +01:00
|
|
|
|
maintainers = with maintainers; [ matthewbauer NieDzejkob ];
|
2016-03-09 04:42:22 +00:00
|
|
|
|
platforms = platforms.all;
|
|
|
|
|
};
|
|
|
|
|
}
|