gnome-hexgl: init at unstable-2019-08-21

This commit is contained in:
Jan Tojnar 2019-08-21 23:55:11 +02:00
parent 144ac2bd16
commit 80354ee314
No known key found for this signature in database
GPG Key ID: 7FAB2A15F7A607A4
2 changed files with 45 additions and 0 deletions

View File

@ -0,0 +1,43 @@
{ stdenv
, fetchFromGitHub
, ninja
, meson
, pkgconfig
, gthree
, gsound
, epoxy
, gtk3
}:
stdenv.mkDerivation rec {
pname = "gnome-hexgl";
version = "unstable-2019-08-21";
src = fetchFromGitHub {
owner = "alexlarsson";
repo = "gnome-hexgl";
rev = "c6edde1250b830c7c8ee738905cb39abef67d4a6";
sha256 = "17j236damqij8n4a37psvkfxbbc18yw03s3hs0qxgfhl4671wf6z";
};
nativeBuildInputs = [
ninja
meson
pkgconfig
];
buildInputs = [
gthree
gsound
epoxy
gtk3
];
meta = with stdenv.lib; {
description = "Gthree port of HexGL";
homepage = https://github.com/alexlarsson/gnome-hexgl;
license = licenses.mit;
maintainers = with maintainers; [ jtojnar ];
platforms = platforms.unix;
};
}

View File

@ -9485,6 +9485,8 @@ in
gnome-desktop-testing = callPackage ../development/tools/gnome-desktop-testing {};
gnome-hexgl = callPackage ../games/gnome-hexgl {};
gnome-usage = callPackage ../applications/misc/gnome-usage {};
gnome-latex = callPackage ../applications/editors/gnome-latex/default.nix { };