summaryrefslogtreecommitdiffstats
path: root/pkgs/games/gnome-hexgl
diff options
context:
space:
mode:
authorJan Tojnar <jtojnar@gmail.com>2019-08-21 23:55:11 +0200
committerJan Tojnar <jtojnar@gmail.com>2019-08-22 02:24:55 +0200
commit80354ee31404243bafc7a17b9c1bf6b46ea7ec08 (patch)
treeec9a712a0def045264cd6a8a5a0e1506df46881d /pkgs/games/gnome-hexgl
parent144ac2bd16d8c4dc829b6a971679d952bf415d58 (diff)
gnome-hexgl: init at unstable-2019-08-21
Diffstat (limited to 'pkgs/games/gnome-hexgl')
-rw-r--r--pkgs/games/gnome-hexgl/default.nix43
1 files changed, 43 insertions, 0 deletions
diff --git a/pkgs/games/gnome-hexgl/default.nix b/pkgs/games/gnome-hexgl/default.nix
new file mode 100644
index 000000000000..7a720239182d
--- /dev/null
+++ b/pkgs/games/gnome-hexgl/default.nix
@@ -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;
+ };
+}