Skip to content

Commit

Permalink
gthree: unstable-2019-10-21
Browse files Browse the repository at this point in the history
  • Loading branch information
jtojnar committed Aug 22, 2019
1 parent 0e51dcd commit 144ac2b
Show file tree
Hide file tree
Showing 2 changed files with 74 additions and 0 deletions.
72 changes: 72 additions & 0 deletions pkgs/development/libraries/gthree/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,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 rec {
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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -1690,6 +1690,8 @@ in

gsctl = callPackage ../applications/misc/gsctl { };

gthree = callPackage ../development/libraries/gthree { };

gti = callPackage ../tools/misc/gti { };

hdate = callPackage ../applications/misc/hdate { };
Expand Down

0 comments on commit 144ac2b

Please sign in to comment.