nixpkgs/pkgs/applications/graphics/goxel/default.nix

37 lines
866 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, scons, pkg-config, wrapGAppsHook
2018-01-15 05:20:03 +00:00
, glfw3, gtk3, libpng12 }:
stdenv.mkDerivation rec {
pname = "goxel";
2021-08-09 19:43:38 +00:00
version = "0.10.8";
2018-01-15 05:20:03 +00:00
src = fetchFromGitHub {
owner = "guillaumechereau";
repo = "goxel";
rev = "v${version}";
2021-08-09 19:43:38 +00:00
sha256 = "sha256-M9H9SV8xmU7Jw5rEdV0gfloIEBvWmWSuH+BCrowpf2M=";
2018-01-15 05:20:03 +00:00
};
patches = [ ./disable-imgui_ini.patch ];
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
'';
meta = with lib; {
2018-01-15 05:20:03 +00:00
description = "Open Source 3D voxel editor";
homepage = "https://guillaumechereau.github.io/goxel/";
2018-01-15 05:20:03 +00:00
license = licenses.gpl3;
platforms = platforms.linux;
2018-01-15 05:20:03 +00:00
maintainers = with maintainers; [ tilpner ];
};
}