Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / games / gnome-hexgl / default.nix
blob54d74ffa5fa034297f17e6b11d7061802a711361
1 { lib, stdenv
2 , fetchFromGitHub
3 , ninja
4 , meson
5 , pkg-config
6 , gthree
7 , gsound
8 , libepoxy
9 , gtk3
12 stdenv.mkDerivation rec {
13   pname = "gnome-hexgl";
14   version = "unstable-2020-07-24";
16   src = fetchFromGitHub {
17     owner = "alexlarsson";
18     repo = "gnome-hexgl";
19     rev = "f47a351055a235730795341dcd6b2397cc4bfa0c";
20     sha256 = "yZWGymaSUfnCP8VAEdDH64w0muSnRK/XPi1/IqTrE4k=";
21   };
23   nativeBuildInputs = [
24     ninja
25     meson
26     pkg-config
27   ];
29   buildInputs = [
30     gthree
31     gsound
32     libepoxy
33     gtk3
34   ];
36   meta = with lib; {
37     description = "Gthree port of HexGL";
38     homepage = "https://github.com/alexlarsson/gnome-hexgl";
39     license = licenses.mit;
40     maintainers = with maintainers; [ ];
41     platforms = platforms.unix;
42   };