nixpkgs/pkgs/development/libraries/draco/default.nix
2021-01-21 19:11:02 -08:00

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;
};
}