2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, scons, pkgconfig, wrapGAppsHook
|
2018-01-14 21:20:03 -08:00
|
|
|
, glfw3, gtk3, libpng12 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "goxel";
|
2020-12-07 10:56:45 -08:00
|
|
|
version = "0.10.7";
|
2018-01-14 21:20:03 -08:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "guillaumechereau";
|
|
|
|
repo = "goxel";
|
|
|
|
rev = "v${version}";
|
2020-12-07 10:56:45 -08:00
|
|
|
sha256 = "1v6m6nhl1if8ik5bmblhq46bip6y2qz18a04s8a9awb4yh9ls039";
|
2018-01-14 21:20:03 -08:00
|
|
|
};
|
|
|
|
|
2018-05-01 01:36:38 -07:00
|
|
|
patches = [ ./disable-imgui_ini.patch ];
|
|
|
|
|
2018-01-14 21:20:03 -08:00
|
|
|
nativeBuildInputs = [ scons pkgconfig wrapGAppsHook ];
|
|
|
|
buildInputs = [ glfw3 gtk3 libpng12 ];
|
2019-10-29 19:23:29 -07:00
|
|
|
NIX_LDFLAGS = "-lpthread";
|
2018-01-14 21:20:03 -08:00
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
make release
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D ./goxel $out/bin/goxel
|
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-01-14 21:20:03 -08:00
|
|
|
description = "Open Source 3D voxel editor";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://guillaumechereau.github.io/goxel/";
|
2018-01-14 21:20:03 -08:00
|
|
|
license = licenses.gpl3;
|
2019-04-25 13:48:35 -07:00
|
|
|
platforms = platforms.linux;
|
2018-01-14 21:20:03 -08:00
|
|
|
maintainers = with maintainers; [ tilpner ];
|
|
|
|
};
|
|
|
|
}
|