summary refs log tree commit diff
path: root/pkgs/development/libraries/gthree/default.nix
blob: 1af62e14d8d2b571b4e0a9b62088b67c4584bc2c (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
71
72
{ stdenv
, fetchFromGitHub
, fetchpatch
, ninja
, meson
, pkgconfig
, gobject-introspection
, gtk-doc
, docbook_xsl
, docbook_xml_dtd_43
, glib
, gtk3
, graphene
, epoxy
, json-glib
}:

stdenv.mkDerivation {
  pname = "gthree";
  version = "unstable-2019-08-21";

  outputs = [ "out" "dev" "devdoc" ];

  src = fetchFromGitHub {
    owner = "alexlarsson";
    repo = "gthree";
    rev = "dac46b0f35e29319c004c7e17b5f345ef4c04cb8";
    sha256 = "16ixis2g04000zffm44s7ir64vn3byz9a793g2s76aasqybl86i2";
  };

  patches = [
    # correctly declare json-glib in .pc file
    # https://github.com/alexlarsson/gthree/pull/61
    (fetchpatch {
      url = https://github.com/alexlarsson/gthree/commit/784b1f20e0b6eb15f113a51f74c2cba871249861.patch;
      sha256 = "07vxafaxris5a98w751aw04nlw0l45np1lba08xd16wdzmkadz0x";
    })
  ];

  nativeBuildInputs = [
    ninja
    meson
    pkgconfig
    gtk-doc
    docbook_xsl
    docbook_xml_dtd_43
    gobject-introspection
  ];

  buildInputs = [
    epoxy
  ];

  propagatedBuildInputs = [
    glib
    gtk3
    graphene
    json-glib
  ];

  mesonFlags = [
    "-Dgtk_doc=${if stdenv.isDarwin then "false" else "true"}"
  ];

  meta = with stdenv.lib; {
    description = "GObject/GTK port of three.js";
    homepage = https://github.com/alexlarsson/gthree;
    license = licenses.mit;
    maintainers = with maintainers; [ jtojnar ];
    platforms = platforms.unix;
  };
}