mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
39 lines
875 B
Nix
39 lines
875 B
Nix
{ stdenv, fetchFromGitHub, scons, pkgconfig, wrapGAppsHook
|
|
, glfw3, gtk3, libpng12 }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "goxel";
|
|
version = "0.10.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "guillaumechereau";
|
|
repo = "goxel";
|
|
rev = "v${version}";
|
|
sha256 = "1mdw4bs7hvfn0yngd9ial5wzlfkcbhr3wzldb1w7s3s48agixkdr";
|
|
};
|
|
|
|
patches = [ ./disable-imgui_ini.patch ];
|
|
|
|
nativeBuildInputs = [ scons pkgconfig wrapGAppsHook ];
|
|
buildInputs = [ glfw3 gtk3 libpng12 ];
|
|
NIX_LDFLAGS = [
|
|
"-lpthread"
|
|
];
|
|
|
|
buildPhase = ''
|
|
make release
|
|
'';
|
|
|
|
installPhase = ''
|
|
install -D ./goxel $out/bin/goxel
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Open Source 3D voxel editor";
|
|
homepage = https://guillaumechereau.github.io/goxel/;
|
|
license = licenses.gpl3;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ tilpner ];
|
|
};
|
|
}
|