gammu: move pkgconfig and cmake to nativeBuildInputs

This commit is contained in:
Matt McHenry 2017-04-04 20:31:56 -04:00
parent 4b77264308
commit c4d80e43af

View File

@ -19,7 +19,9 @@ stdenv.mkDerivation rec {
patches = [ ./bashcomp-dir.patch ./systemd.patch ]; patches = [ ./bashcomp-dir.patch ./systemd.patch ];
buildInputs = [ python pkgconfig cmake bluez libusb1 curl gettext sqlite libiconv ] nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ python bluez libusb1 curl gettext sqlite libiconv ]
++ optionals dbiSupport [ libdbi libdbiDrivers ] ++ optionals dbiSupport [ libdbi libdbiDrivers ]
++ optionals postgresSupport [ postgresql ]; ++ optionals postgresSupport [ postgresql ];