lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request #143782 from jansol/draco

draco: 1.4.1 -> 1.4.3

authored by

Michael Raskin and committed by
GitHub
53963a88 aa47097e

+8 -2
+8 -2
pkgs/development/libraries/draco/default.nix
··· 2 2 }: 3 3 4 4 stdenv.mkDerivation rec { 5 - version = "1.4.1"; 5 + version = "1.4.3"; 6 6 pname = "draco"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "google"; 10 10 repo = "draco"; 11 11 rev = version; 12 - sha256 = "14ln4la52x38pf8syr7i5v4vd65ya4zij8zj5kgihah03cih0qcd"; 12 + sha256 = "sha256-eSu6tkWbRHzJkWwPgljaScAuL0gRkp8PJUHWC8mUvOw="; 13 13 }; 14 14 15 15 nativeBuildInputs = [ cmake ]; ··· 21 21 22 22 "-DBUILD_UNITY_PLUGIN=1" 23 23 ]; 24 + 25 + # Upstream mistakenly installs to /nix/store/.../nix/store/.../*, work around that 26 + postInstall = '' 27 + mv $out/nix/store/*/* $out 28 + rm -rf $out/nix 29 + ''; 24 30 25 31 meta = with lib; { 26 32 description = "Library for compressing and decompressing 3D geometric meshes and point clouds";