lib3mf: add missing uuid dependency on Darwin (#65555)
This commit is contained in:
parent
c382280df6
commit
72e547e2ad
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake, ninja, libuuid, gtest }:
|
{ stdenv, fetchFromGitHub, cmake, ninja, libuuid, libossp_uuid, gtest }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "lib3mf";
|
pname = "lib3mf";
|
||||||
@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
nativeBuildInputs = [ cmake ninja ];
|
nativeBuildInputs = [ cmake ninja ];
|
||||||
|
|
||||||
buildInputs = [ libuuid ];
|
buildInputs = if stdenv.isDarwin then [ libossp_uuid ] else [ libuuid ];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
rmdir UnitTests/googletest
|
rmdir UnitTests/googletest
|
||||||
|
Loading…
x
Reference in New Issue
Block a user