biome: 1.9.2 -> 1.9.3 (#349335)
[NixPkgs.git] / pkgs / applications / graphics / goxel / default.nix
blob404a42959038f31883dafcad7d448465e5193cd6
1 { lib, stdenv, fetchFromGitHub, scons, pkg-config, wrapGAppsHook3
2 , glfw3, gtk3, libpng }:
4 stdenv.mkDerivation (finalAttrs: {
5   pname = "goxel";
6   version = "0.15.1";
8   src = fetchFromGitHub {
9     owner = "guillaumechereau";
10     repo = "goxel";
11     rev = "v${finalAttrs.version}";
12     hash = "sha256-mNSkQisWL3wXb+IsClWFTMbpeiRC4xteePXNP+GkUnU=";
13   };
15   nativeBuildInputs = [ scons pkg-config wrapGAppsHook3 ];
16   buildInputs = [ glfw3 gtk3 libpng ];
18   dontUseSconsBuild = true;
19   dontUseSconsInstall = true;
21   makeFlags = [ "PREFIX=$(out)" ];
23   buildFlags = [ "release" ];
25   meta = with lib; {
26     description = "Open Source 3D voxel editor";
27     mainProgram = "goxel";
28     homepage = "https://guillaumechereau.github.io/goxel/";
29     license = licenses.gpl3;
30     platforms = platforms.linux;
31     maintainers = with maintainers; [ tilpner fgaz ];
32   };