goxel: init at 0.7.2

tilpner fb1d0946 550136f5

+36
+1
lib/maintainers.nix
··· 672 ThomasMader = "Thomas Mader <thomas.mader@gmail.com>"; 673 thoughtpolice = "Austin Seipp <aseipp@pobox.com>"; 674 thpham = "Thomas Pham <thomas.pham@ithings.ch>"; 675 timbertson = "Tim Cuthbertson <tim@gfxmonk.net>"; 676 timokau = "Timo Kaufmann <timokau@zoho.com>"; 677 tiramiseb = "Sébastien Maccagnoni <sebastien@maccagnoni.eu>";
··· 672 ThomasMader = "Thomas Mader <thomas.mader@gmail.com>"; 673 thoughtpolice = "Austin Seipp <aseipp@pobox.com>"; 674 thpham = "Thomas Pham <thomas.pham@ithings.ch>"; 675 + tilpner = "Till Höppner <till@hoeppner.ws>"; 676 timbertson = "Tim Cuthbertson <tim@gfxmonk.net>"; 677 timokau = "Timo Kaufmann <timokau@zoho.com>"; 678 tiramiseb = "Sébastien Maccagnoni <sebastien@maccagnoni.eu>";
+33
pkgs/applications/graphics/goxel/default.nix
···
··· 1 + { stdenv, lib, fetchFromGitHub, scons, pkgconfig, wrapGAppsHook 2 + , glfw3, gtk3, libpng12 }: 3 + 4 + stdenv.mkDerivation rec { 5 + name = "goxel-${version}"; 6 + version = "0.7.2"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "guillaumechereau"; 10 + repo = "goxel"; 11 + rev = "v${version}"; 12 + sha256 = "1d6waj8zz9iq3ddbi9wbpcnh200ajjy9x53xrj5bij01pb8jwskv"; 13 + }; 14 + 15 + nativeBuildInputs = [ scons pkgconfig wrapGAppsHook ]; 16 + buildInputs = [ glfw3 gtk3 libpng12 ]; 17 + 18 + buildPhase = '' 19 + make release 20 + ''; 21 + 22 + installPhase = '' 23 + install -D ./goxel $out/bin/goxel 24 + ''; 25 + 26 + meta = with stdenv.lib; { 27 + description = "Open Source 3D voxel editor"; 28 + homepage = https://guillaumechereau.github.io/goxel/; 29 + license = licenses.gpl3; 30 + platforms = platforms.linux; 31 + maintainers = with maintainers; [ tilpner ]; 32 + }; 33 + }
+2
pkgs/top-level/all-packages.nix
··· 15008 15009 gopherclient = libsForQt5.callPackage ../applications/networking/gopher/gopherclient { }; 15010 15011 gpa = callPackage ../applications/misc/gpa { }; 15012 15013 gpicview = callPackage ../applications/graphics/gpicview {
··· 15008 15009 gopherclient = libsForQt5.callPackage ../applications/networking/gopher/gopherclient { }; 15010 15011 + goxel = callPackage ../applications/graphics/goxel { }; 15012 + 15013 gpa = callPackage ../applications/misc/gpa { }; 15014 15015 gpicview = callPackage ../applications/graphics/gpicview {