lol
0
fork

Configure Feed

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

libks: build on darwin

+5 -5
+5 -5
pkgs/development/libraries/libks/default.nix
··· 6 6 , pkg-config 7 7 , libuuid 8 8 , openssl 9 + , libossp_uuid 9 10 }: 10 11 11 12 stdenv.mkDerivation rec { ··· 33 34 pkg-config 34 35 ]; 35 36 36 - buildInputs = [ 37 - libuuid 38 - openssl 39 - ]; 37 + buildInputs = [ openssl ] 38 + ++ lib.optional stdenv.isLinux libuuid 39 + ++ lib.optional stdenv.isDarwin libossp_uuid; 40 40 41 41 meta = with lib; { 42 42 description = "Foundational support for signalwire C products"; 43 43 homepage = "https://github.com/signalwire/libks"; 44 44 maintainers = with lib.maintainers; [ misuzu ]; 45 - platforms = platforms.linux; 45 + platforms = platforms.unix; 46 46 license = licenses.mit; 47 47 }; 48 48 }