mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
f9fdf2d402
with structuredAttrs lists will be bash arrays which cannot be exported which will be a issue with some patches and some wrappers like cc-wrapper this makes it clearer that NIX_CFLAGS_COMPILE must be a string as lists in env cause a eval failure
43 lines
971 B
Nix
43 lines
971 B
Nix
{ lib, stdenv, fetchFromGitHub, scons, pkg-config, wrapGAppsHook
|
|
, glfw3, gtk3, libpng12 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "goxel";
|
|
version = "0.10.8";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "guillaumechereau";
|
|
repo = "goxel";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-M9H9SV8xmU7Jw5rEdV0gfloIEBvWmWSuH+BCrowpf2M=";
|
|
};
|
|
|
|
patches = [ ./disable-imgui_ini.patch ];
|
|
|
|
nativeBuildInputs = [ scons pkg-config wrapGAppsHook ];
|
|
buildInputs = [ glfw3 gtk3 libpng12 ];
|
|
|
|
env.NIX_CFLAGS_COMPILE = toString [
|
|
# Needed with GCC 12
|
|
"-Wno-error=format-truncation"
|
|
];
|
|
|
|
NIX_LDFLAGS = "-lpthread";
|
|
|
|
buildPhase = ''
|
|
make release
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -D ./goxel $out/bin/goxel
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Open Source 3D voxel editor";
|
|
homepage = "https://guillaumechereau.github.io/goxel/";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ tilpner ];
|
|
};
|
|
}
|