mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 21:43:32 +00:00
41 lines
1.1 KiB
Nix
41 lines
1.1 KiB
Nix
{ lib, stdenv, fetchFromGitHub, cmake, nix-update-script }:
|
|
|
|
let
|
|
basis_universal = fetchFromGitHub {
|
|
owner = "zeux";
|
|
repo = "basis_universal";
|
|
rev = "8903f6d69849fd782b72a551a4dd04a264434e20";
|
|
hash = "sha256-o3dCxAAkpMoNkvkM7qD75cPn/obDc/fJ8u7KLPm1G6g=";
|
|
};
|
|
in stdenv.mkDerivation rec {
|
|
pname = "meshoptimizer";
|
|
version = "0.22";
|
|
src = fetchFromGitHub {
|
|
owner = "zeux";
|
|
repo = "meshoptimizer";
|
|
rev = "v${version}";
|
|
hash = "sha256-/47CfgPtj+e4iz01+rwahP+jCXPXXZhTeLLiLktrJ6g=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
outputs = [ "bin" "dev" "out" ];
|
|
|
|
cmakeFlags = [
|
|
"-DMESHOPT_BUILD_GLTFPACK=ON"
|
|
"-DMESHOPT_BASISU_PATH=${basis_universal}"
|
|
] ++ lib.optional (!stdenv.hostPlatform.isStatic)
|
|
"-DMESHOPT_BUILD_SHARED_LIBS:BOOL=ON";
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = with lib; {
|
|
description = "Mesh optimization library that makes meshes smaller and faster to render";
|
|
homepage = "https://github.com/zeux/meshoptimizer";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ bouk lillycham ];
|
|
platforms = platforms.all;
|
|
mainProgram = "gltfpack";
|
|
};
|
|
}
|