Skip to content

Commit

Permalink
lib3mf: add missing uuid dependency on Darwin (#65555)
Browse files Browse the repository at this point in the history
  • Loading branch information
thefloweringash authored and veprbl committed Jul 29, 2019
1 parent c382280 commit 72e547e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/development/libraries/lib3mf/default.nix
@@ -1,4 +1,4 @@
{ stdenv, fetchFromGitHub, cmake, ninja, libuuid, gtest }:
{ stdenv, fetchFromGitHub, cmake, ninja, libuuid, libossp_uuid, gtest }:

stdenv.mkDerivation rec {
pname = "lib3mf";
Expand All @@ -13,7 +13,7 @@ stdenv.mkDerivation rec {

nativeBuildInputs = [ cmake ninja ];

buildInputs = [ libuuid ];
buildInputs = if stdenv.isDarwin then [ libossp_uuid ] else [ libuuid ];

postPatch = ''
rmdir UnitTests/googletest
Expand Down

0 comments on commit 72e547e

Please sign in to comment.