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