mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
33 lines
767 B
Nix
33 lines
767 B
Nix
{ lib, stdenv, fetchFromGitHub, cmake
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.4.1";
|
|
pname = "draco";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "google";
|
|
repo = "draco";
|
|
rev = version;
|
|
sha256 = "14ln4la52x38pf8syr7i5v4vd65ya4zij8zj5kgihah03cih0qcd";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
cmakeFlags = [
|
|
# Fake these since we are building from a tarball
|
|
"-Ddraco_git_hash=${version}"
|
|
"-Ddraco_git_desc=${version}"
|
|
|
|
"-DBUILD_UNITY_PLUGIN=1"
|
|
];
|
|
|
|
meta = with lib; {
|
|
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;
|
|
};
|
|
}
|