forked from mirrors/nixpkgs
rgbds: init at 0.2.4
This commit is contained in:
parent
e7cfccbcc2
commit
f0e5910c24
|
@ -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>";
|
||||
|
|
22
pkgs/development/compilers/rgbds/default.nix
Normal file
22
pkgs/development/compilers/rgbds/default.nix
Normal file
|
@ -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 {};
|
||||
|
|
Loading…
Reference in a new issue