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