monolith: fix build on darwin (#444382)

authored by Wolfgang Walther and committed by GitHub 70bba57b eb28cc69

+7 -7
+7 -7
pkgs/by-name/mo/monolith/package.nix
··· 24 24 25 25 OPENSSL_NO_VENDOR = true; 26 26 27 - nativeBuildInputs = lib.optionals stdenv.hostPlatform.isLinux [ pkg-config ]; 28 - buildInputs = 29 - lib.optionals stdenv.hostPlatform.isLinux [ openssl ] 30 - ++ lib.optionals stdenv.hostPlatform.isDarwin [ 31 - libiconv 32 - ]; 27 + nativeBuildInputs = [ pkg-config ]; 28 + buildInputs = [ 29 + openssl 30 + ] 31 + ++ lib.optionals stdenv.hostPlatform.isDarwin [ 32 + libiconv 33 + ]; 33 34 34 35 checkFlags = [ "--skip=tests::cli" ]; 35 36 ··· 41 42 homepage = "https://github.com/Y2Z/monolith"; 42 43 license = licenses.cc0; 43 44 platforms = lib.platforms.unix; 44 - broken = stdenv.hostPlatform.isDarwin; 45 45 maintainers = with maintainers; [ Br1ght0ne ]; 46 46 }; 47 47 }