nixpkgs/pkgs/development/compilers/rgbds/default.nix
Vladimír Čunát f94a806c4a properly fix the maintainer.matthewbauer problem
There was inconsisten usage of maintainers.matthewbauer and mbauer.
/cc @matthewbauer I chose the github identifier, as it's customary.
2016-05-27 15:58:41 +02:00

23 lines
624 B
Nix

{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; [ matthewbauer ];
platforms = platforms.all;
};
}