2018-07-21 01:44:44 +01:00
|
|
|
{ stdenv, fetchFromGitHub, scons, pkgconfig, 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";
|
2019-07-02 23:34:31 +01:00
|
|
|
version = "0.10.0";
|
2018-01-15 05:20:03 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "guillaumechereau";
|
|
|
|
repo = "goxel";
|
|
|
|
rev = "v${version}";
|
2019-07-02 23:34:31 +01:00
|
|
|
sha256 = "1mdw4bs7hvfn0yngd9ial5wzlfkcbhr3wzldb1w7s3s48agixkdr";
|
2018-01-15 05:20:03 +00:00
|
|
|
};
|
|
|
|
|
2018-05-01 09:36:38 +01: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;
|
2019-04-25 21:48:35 +01:00
|
|
|
platforms = platforms.linux;
|
2018-01-15 05:20:03 +00:00
|
|
|
maintainers = with maintainers; [ tilpner ];
|
|
|
|
};
|
|
|
|
}
|