Francesco Gazzetta 2024-07-08 17:21:42 +02:00
parent 51acb42165
commit 6524e59bb1

View File

@ -3,33 +3,24 @@
stdenv.mkDerivation (finalAttrs: {
pname = "goxel";
version = "0.14.0";
version = "0.15.0";
src = fetchFromGitHub {
owner = "guillaumechereau";
repo = "goxel";
rev = "v${finalAttrs.version}";
hash = "sha256-ueA0YW2n/DXd9AytDzfPtvtXbvuUm4VDwcdvHWObKxc=";
hash = "sha256-bJnIZwTmvHNHXYq3zsMwu0EORtX2o9lLi6LFNrolwe4=";
};
nativeBuildInputs = [ scons pkg-config wrapGAppsHook3 ];
buildInputs = [ glfw3 gtk3 libpng ];
buildPhase = ''
make release
'';
dontUseSconsBuild = true;
dontUseSconsInstall = true;
installPhase = ''
install -D ./goxel $out/bin/goxel
makeFlags = [ "PREFIX=$(out)" ];
for res in $(ls data/icons | sed -e 's/icon//g' -e 's/.png//g'); do
install -Dm444 data/icons/icon$res.png $out/share/icons/hicolor/''${res}x''${res}/apps/goxel.png
done
install -Dm444 snap/gui/goxel.desktop -t $out/share/applications
substituteInPlace $out/share/applications/goxel.desktop \
--replace 'Icon=''${SNAP}/icon.png' 'Icon=goxel'
'';
buildFlags = [ "release" ];
meta = with lib; {
description = "Open Source 3D voxel editor";