biglybt: 3.5.0.0 -> 3.6.0.0
[NixPkgs.git] / pkgs / applications / graphics / goxel / default.nix
blob000fd3719263ffdede1fceda6fc49298eb578016
1 { lib, stdenv, fetchFromGitHub, scons, pkg-config, wrapGAppsHook
2 , glfw3, gtk3, libpng }:
4 stdenv.mkDerivation (finalAttrs: {
5   pname = "goxel";
6   version = "0.14.0";
8   src = fetchFromGitHub {
9     owner = "guillaumechereau";
10     repo = "goxel";
11     rev = "v${finalAttrs.version}";
12     hash = "sha256-ueA0YW2n/DXd9AytDzfPtvtXbvuUm4VDwcdvHWObKxc=";
13   };
15   nativeBuildInputs = [ scons pkg-config wrapGAppsHook ];
16   buildInputs = [ glfw3 gtk3 libpng ];
18   buildPhase = ''
19     make release
20   '';
22   installPhase = ''
23     install -D ./goxel $out/bin/goxel
25     for res in $(ls data/icons | sed -e 's/icon//g' -e 's/.png//g'); do
26       install -Dm444 data/icons/icon$res.png $out/share/icons/hicolor/''${res}x''${res}/apps/goxel.png
27     done
29     install -Dm444 snap/gui/goxel.desktop -t $out/share/applications
30     substituteInPlace $out/share/applications/goxel.desktop \
31       --replace 'Icon=''${SNAP}/icon.png' 'Icon=goxel'
32   '';
34   meta = with lib; {
35     description = "Open Source 3D voxel editor";
36     mainProgram = "goxel";
37     homepage = "https://guillaumechereau.github.io/goxel/";
38     license = licenses.gpl3;
39     platforms = platforms.linux;
40     maintainers = with maintainers; [ tilpner fgaz ];
41   };