nixpkgs/pkgs/development/libraries/draco/default.nix

33 lines
767 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake
2020-05-12 16:41:38 +00:00
}:
stdenv.mkDerivation rec {
2020-12-10 14:48:24 +00:00
version = "1.4.1";
2020-05-12 16:41:38 +00:00
pname = "draco";
src = fetchFromGitHub {
owner = "google";
repo = "draco";
rev = version;
2020-12-10 14:48:24 +00:00
sha256 = "14ln4la52x38pf8syr7i5v4vd65ya4zij8zj5kgihah03cih0qcd";
2020-05-12 16:41:38 +00: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"
];
meta = with lib; {
2020-05-12 16:41:38 +00: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;
};
}