summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-08-07 23:18:23 +0200
committerGitHub <noreply@github.com>2021-08-07 23:18:23 +0200
commitd7e3a7230532135e9357b3c37907adc7b56255fd (patch)
tree2b51fc8fc791d3a083ca515c6d0049f620a266ab /pkgs/development
parentc4fb7474af10b7aec6b9684d3a68d44c91774bb1 (diff)
parentbf6d934cf80e6f5365d3193e01840397709d4d87 (diff)
Merge pull request #132928 from sbruder/update-rgbds
rgbds: 0.4.2 -> 0.5.1
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/compilers/rgbds/default.nix12
1 files changed, 4 insertions, 8 deletions
diff --git a/pkgs/development/compilers/rgbds/default.nix b/pkgs/development/compilers/rgbds/default.nix
index 6bc74971c4e99..00b20abbda8a3 100644
--- a/pkgs/development/compilers/rgbds/default.nix
+++ b/pkgs/development/compilers/rgbds/default.nix
@@ -1,23 +1,19 @@
 {lib, 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.4.2";
+  version = "0.5.1";
   src = fetchFromGitHub {
-    owner = "rednex";
+    owner = "gbdev";
     repo = "rgbds";
     rev = "v${version}";
-    sha256 = "0lygj7jzjlq4w0mkiir7ycysrd1p1akyvzrppjcchja05mi8wy9p";
+    sha256 = "11b1hg2m2f60q5622rb0nxhrzzylsxjx0c8inbxifi6lvmj9ak4x";
   };
   nativeBuildInputs = [ bison flex pkg-config libpng ];
   installFlags = [ "PREFIX=\${out}" ];
 
   meta = with lib; {
-    homepage = "https://rednex.github.io/rgbds/";
+    homepage = "https://rgbds.gbdev.io/";
     description = "A free assembler/linker package for the Game Boy and Game Boy Color";
     license = licenses.mit;
     longDescription =