about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/retro-gtk/default.nix
blob: e1385f7a3ef0232d33fc49e940a784c2d8351495 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{ lib
, stdenv
, fetchurl
, cmake
, meson
, ninja
, pkg-config
, libepoxy
, glib
, gtk3
, libpulseaudio
, libsamplerate
, gobject-introspection
, vala
, gtk-doc
}:

stdenv.mkDerivation rec {
  pname = "retro-gtk";
  version = "1.0.2";

  src = fetchurl {
    url = "mirror://gnome/sources/retro-gtk/${lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
    sha256 = "1lnb7dwcj3lrrvdzd85dxwrlid28xf4qdbrgfjyg1wn1z6sv063i";
  };

  patches = [
    # https://gitlab.gnome.org/GNOME/retro-gtk/-/merge_requests/150
    ./gio-unix.patch
  ];

  nativeBuildInputs = [
    gobject-introspection
    gtk-doc
    meson
    ninja
    pkg-config
    vala
  ];

  buildInputs = [
    libepoxy
    glib
    gtk3
    libpulseaudio
    libsamplerate
  ];

  meta = with lib; {
    description = "The GTK Libretro frontend framework";
    longDescription = ''
      Libretro is a plugin format design to implement video game
      console emulators, video games and similar multimedia
      software. Such plugins are called Libretro cores.

      RetroGTK is a framework easing the use of Libretro cores in
      conjunction with GTK.

      It encourages the cores to be installed in a well defined
      centralized place — namely the libretro subdirectory of your lib
      directory — and it recommends them to come with Libretro core
      descriptors.
    '';
    homepage = "https://gitlab.gnome.org/GNOME/retro-gtk";
    changelog = "https://gitlab.gnome.org/GNOME/retro-gtk/-/blob/master/NEWS";
    license = licenses.gpl3Plus;
    maintainers = [ maintainers.DamienCassou ];
    platforms = platforms.all;
  };
}