nixpkgs/pkgs/development/compilers/rgbds/default.nix
Silvan Mosberger f5fa5fa4d6 pkgs: refactor needless quoting of homepage meta attribute (#27809)
* pkgs: refactor needless quoting of homepage meta attribute

A lot of packages are needlessly quoting the homepage meta attribute
(about 1400, 22%), this commit refactors all of those instances.

* pkgs: Fixing some links that were wrongfully unquoted in the previous
commit

* Fixed some instances
2017-08-01 22:03:30 +02:00

23 lines
622 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;
};
}