rgbds: init at 0.2.4

This commit is contained in:
Matthew Bauer 2016-03-08 22:42:22 -06:00
parent e7cfccbcc2
commit f0e5910c24
3 changed files with 25 additions and 0 deletions

@ -212,6 +212,7 @@
matejc = "Matej Cotman <cotman.matej@gmail.com>";
mathnerd314 = "Mathnerd314 <mathnerd314.gph+hs@gmail.com>";
matthiasbeyer = "Matthias Beyer <mail@beyermatthias.de>";
mbauer = "Matthew Bauer <mjbauer95@gmail.com>";
maurer = "Matthew Maurer <matthew.r.maurer+nix@gmail.com>";
mbakke = "Marius Bakke <ymse@tuta.io>";
mbe = "Brandon Edens <brandonedens@gmail.com>";

@ -0,0 +1,22 @@
{stdenv, fetchFromGitHub, yacc}:
stdenv.mkDerivation rec {
name = "rgbds-${version}";
version = "0.2.4";
src = fetchFromGitHub {
owner = "bentley";
repo = "rgbds";
rev = "v${version}";
sha256 = "0dwq0p9g1lci8sm12a2rfk0g33z2vr75x78zdf1g84djwbz8ipc6";
};
nativeBuildInputs = [ yacc ];
installFlags = "PREFIX=\${out}";
meta = with stdenv.lib; {
homepage = "https://www.anjbe.name/rgbds/";
description = "An assembler/linker package that produces Game Boy programs";
license = licenses.free;
maintainers = with maintainers; [ mbauer ];
platforms = platforms.all;
};
}

@ -5107,6 +5107,8 @@ let
ocaml = ocaml_3_08_0;
};
rgbds = callPackage ../development/compilers/rgbds { };
rtags = callPackage ../development/tools/rtags/default.nix {};
rustcMaster = callPackage ../development/compilers/rustc/head.nix {};