libwbxml: fix build

+8 -6
+8 -6
pkgs/by-name/li/libwbxml/package.nix
··· 4 4 lib, 5 5 cmake, 6 6 expat, 7 + check, 8 + pkg-config, 7 9 }: 8 10 9 11 stdenv.mkDerivation rec { ··· 17 19 sha256 = "sha256-yy8+CyNKXuttCmxRxH/XptIloDklto4f5Zg0vnwnneY="; 18 20 }; 19 21 20 - nativeBuildInputs = [ cmake ]; 22 + nativeBuildInputs = [ 23 + cmake 24 + pkg-config 25 + check 26 + ]; 21 27 buildInputs = [ expat ]; 22 28 23 - postPatch = '' 24 - sed -i 's/^SET.*$//' cmake/CMakeLists.txt 25 - ''; 26 - 27 29 meta = with lib; { 28 30 homepage = "https://github.com/libwbxml/libwbxml"; 29 31 description = "WBXML Library (aka libwbxml) contains a library and its associated tools to Parse, Encode and Handle WBXML documents"; 30 32 maintainers = with maintainers; [ mh ]; 31 - platforms = platforms.linux; 33 + platforms = platforms.unix; 32 34 license = licenses.lgpl21Plus; 33 35 }; 34 36 }