nixpkgs/pkgs/games/gambatte/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
802 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, scons, qt4, alsa-lib }:
2016-08-01 17:38:24 +00:00
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
pname = "gambatte";
version = "2020-03-14";
2016-08-01 17:38:24 +00:00
src = fetchFromGitHub {
owner = "sinamas";
repo = "gambatte";
rev = "56e3371151b5ee86dcdcf4868324ebc6de220bc9";
sha256 = "0cc6zcvxpvi5hgcssb1zy0fkj9nk7n0d2xm88a4v05kpm5zw7sh2";
2016-08-01 17:38:24 +00:00
};
buildInputs = [ scons qt4 alsa-lib ];
2016-08-01 17:38:24 +00:00
2016-08-09 17:37:51 +00:00
patches = [ ./fix-scons-paths.patch ];
2016-08-01 17:38:24 +00:00
buildPhase = ''
./build_qt.sh
'';
installPhase = ''
mkdir -p $out/bin
cp gambatte_qt/bin/gambatte_qt $out/bin/
'';
meta = with lib; {
2016-08-01 17:38:24 +00:00
description = "Portable, open-source Game Boy Color emulator";
homepage = "https://github.com/sinamas/gambatte";
2016-08-01 17:38:24 +00:00
license = licenses.gpl2;
maintainers = [ maintainers.dezgeg ];
platforms = platforms.linux;
};
}