Merge pull request #219021 from wlcx/master

esptool: enable on darwin
This commit is contained in:
Weijia Wang 2023-03-01 19:46:41 +02:00 committed by GitHub
commit d2eff09f50
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -45,6 +45,6 @@ python3.pkgs.buildPythonApplication rec {
homepage = "https://github.com/espressif/esptool";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ dezgeg dotlambda ] ++ teams.lumiguide.members;
platforms = platforms.linux;
platforms = with platforms; linux ++ darwin;
};
}