sdrangel: fix build on x86_64-darwin
[NixPkgs.git] / pkgs / games / gnome-hexgl / default.nix
blob1c7627582d61fb055693cff407ae2e622c6e3d19
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     mainProgram = "gnome-hexgl";
39     homepage = "https://github.com/alexlarsson/gnome-hexgl";
40     license = licenses.mit;
41     maintainers = with maintainers; [ ];
42     platforms = platforms.unix;
43   };