Skip to content

Commit

Permalink
gnome-hexgl: init at unstable-2019-08-21
Browse files Browse the repository at this point in the history
  • Loading branch information
jtojnar committed Aug 22, 2019
1 parent 144ac2b commit 80354ee
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
43 changes: 43 additions & 0 deletions pkgs/games/gnome-hexgl/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 { };
Expand Down

0 comments on commit 80354ee

Please sign in to comment.