2021-01-21 18:00:13 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake
|
2020-05-12 18:41:38 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2020-12-10 15:48:24 +01:00
|
|
|
version = "1.4.1";
|
2020-05-12 18:41:38 +02:00
|
|
|
pname = "draco";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "google";
|
|
|
|
repo = "draco";
|
|
|
|
rev = version;
|
2020-12-10 15:48:24 +01:00
|
|
|
sha256 = "14ln4la52x38pf8syr7i5v4vd65ya4zij8zj5kgihah03cih0qcd";
|
2020-05-12 18:41:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
|
|
|
cmakeFlags = [
|
|
|
|
# Fake these since we are building from a tarball
|
|
|
|
"-Ddraco_git_hash=${version}"
|
|
|
|
"-Ddraco_git_desc=${version}"
|
|
|
|
|
|
|
|
"-DBUILD_UNITY_PLUGIN=1"
|
|
|
|
];
|
|
|
|
|
2021-01-21 18:00:13 +01:00
|
|
|
meta = with lib; {
|
2020-05-12 18:41:38 +02:00
|
|
|
description = "Library for compressing and decompressing 3D geometric meshes and point clouds";
|
|
|
|
homepage = "https://google.github.io/draco/";
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ jansol ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|