about summary refs log tree commit diff
path: root/pkgs/development/compilers/rgbds/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/compilers/rgbds/default.nix')
-rw-r--r--pkgs/development/compilers/rgbds/default.nix37
1 files changed, 0 insertions, 37 deletions
diff --git a/pkgs/development/compilers/rgbds/default.nix b/pkgs/development/compilers/rgbds/default.nix
deleted file mode 100644
index 89e68ece7e6b..000000000000
--- a/pkgs/development/compilers/rgbds/default.nix
+++ /dev/null
@@ -1,37 +0,0 @@
-{lib, stdenv, fetchFromGitHub, bison, flex, pkg-config, libpng}:
-
-stdenv.mkDerivation rec {
-  pname = "rgbds";
-  version = "0.7.0";
-  src = fetchFromGitHub {
-    owner = "gbdev";
-    repo = "rgbds";
-    rev = "v${version}";
-    hash = "sha256-aktKJlwXpHpjSFxoz5wZJPGWZIcn4ax5iBP0GQEux78=";
-  };
-  nativeBuildInputs = [ bison flex pkg-config ];
-  buildInputs = [ libpng ];
-  postPatch = ''
-    patchShebangs --host src/bison.sh
-  '';
-  env.NIX_CFLAGS_COMPILE = lib.optionalString stdenv.isDarwin "-fno-lto";
-  installFlags = [ "PREFIX=${placeholder "out"}" ];
-
-  meta = with lib; {
-    homepage = "https://rgbds.gbdev.io/";
-    description = "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 NieDzejkob ];
-    platforms = platforms.all;
-  };
-}