about summary refs log tree commit diff
path: root/nixpkgs/pkgs/games/gambatte/default.nix
blob: b2a2f0a3f92d8ae1bb9cfad7756343d6ced2f00c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ stdenv, fetchFromGitHub, scons, qt4, alsaLib }:

stdenv.mkDerivation {
  pname = "gambatte";
  version = "2020-03-14";

  src = fetchFromGitHub {
    owner = "sinamas";
    repo = "gambatte";
    rev = "56e3371151b5ee86dcdcf4868324ebc6de220bc9";
    sha256 = "0cc6zcvxpvi5hgcssb1zy0fkj9nk7n0d2xm88a4v05kpm5zw7sh2";
  };

  buildInputs = [ scons qt4 alsaLib ];

  patches = [ ./fix-scons-paths.patch ];

  buildPhase = ''
    ./build_qt.sh
  '';

  installPhase = ''
    mkdir -p $out/bin
    cp gambatte_qt/bin/gambatte_qt $out/bin/
  '';

  meta = with stdenv.lib; {
    description = "Portable, open-source Game Boy Color emulator";
    homepage = "https://github.com/sinamas/gambatte";
    license = licenses.gpl2;
    maintainers = [ maintainers.dezgeg ];
    platforms = platforms.linux;
  };
}