2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchFromGitHub, scons, pkgconfig, wrapGAppsHook
|
2018-01-15 05:20:03 +00:00
|
|
|
, glfw3, gtk3, libpng12 }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "goxel-${version}";
|
2019-01-03 18:44:00 +00:00
|
|
|
version = "0.8.2";
|
2018-01-15 05:20:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "guillaumechereau";
|
|
|
|
repo = "goxel";
|
|
|
|
rev = "v${version}";
|
2019-01-03 18:44:00 +00:00
|
|
|
sha256 = "14rycn6sd3wp90c9ghpif1al3rv1fdgvhmpldmwap0pk790kfxs1";
|
2018-01-15 05:20:03 +00:00
|
|
|
};
|
|
|
|
|
2018-05-01 08:36:38 +00:00
|
|
|
patches = [ ./disable-imgui_ini.patch ];
|
|
|
|
|
2018-01-15 05:20:03 +00:00
|
|
|
nativeBuildInputs = [ scons pkgconfig wrapGAppsHook ];
|
|
|
|
buildInputs = [ glfw3 gtk3 libpng12 ];
|
2019-01-04 19:33:50 +00:00
|
|
|
NIX_LDFLAGS = [
|
|
|
|
"-lpthread"
|
|
|
|
];
|
2018-01-15 05:20:03 +00:00
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
make release
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -D ./goxel $out/bin/goxel
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Open Source 3D voxel editor";
|
|
|
|
homepage = https://guillaumechereau.github.io/goxel/;
|
|
|
|
license = licenses.gpl3;
|
2018-10-13 14:41:54 +00:00
|
|
|
platforms = [ "x86_64-linux" ]; # see https://github.com/guillaumechereau/goxel/issues/125
|
2018-01-15 05:20:03 +00:00
|
|
|
maintainers = with maintainers; [ tilpner ];
|
|
|
|
};
|
|
|
|
}
|