summary refs log tree commit diff
path: root/pkgs/tools/misc
diff options
context:
space:
mode:
authorFabian Affolter <mail@fabian-affolter.ch>2021-07-09 19:20:34 +0200
committerFabian Affolter <mail@fabian-affolter.ch>2021-07-09 19:20:34 +0200
commit3ac0f867c2d6ac05310d3f5802ff0136d39f052f (patch)
tree98ad581d8bec5e5e82edb37a21dd4b0dd25d628d /pkgs/tools/misc
parent3191d4f0af44159e6f215b7fa975a41fd00b8f01 (diff)
downloadnixpkgs-3ac0f867c2d6ac05310d3f5802ff0136d39f052f.tar
nixpkgs-3ac0f867c2d6ac05310d3f5802ff0136d39f052f.tar.gz
nixpkgs-3ac0f867c2d6ac05310d3f5802ff0136d39f052f.tar.bz2
nixpkgs-3ac0f867c2d6ac05310d3f5802ff0136d39f052f.tar.lz
nixpkgs-3ac0f867c2d6ac05310d3f5802ff0136d39f052f.tar.xz
nixpkgs-3ac0f867c2d6ac05310d3f5802ff0136d39f052f.tar.zst
nixpkgs-3ac0f867c2d6ac05310d3f5802ff0136d39f052f.zip
esptool: 3.0 -> 3.1
Diffstat (limited to 'pkgs/tools/misc')
-rw-r--r--pkgs/tools/misc/esptool/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/misc/esptool/default.nix b/pkgs/tools/misc/esptool/default.nix
index 7c7f91621b8..3fc6e96e228 100644
--- a/pkgs/tools/misc/esptool/default.nix
+++ b/pkgs/tools/misc/esptool/default.nix
@@ -2,13 +2,13 @@
 
 python3.pkgs.buildPythonApplication rec {
   pname = "esptool";
-  version = "3.0";
+  version = "3.1";
 
   src = fetchFromGitHub {
     owner = "espressif";
     repo = "esptool";
     rev = "v${version}";
-    sha256 = "1y022qlcdgdx5a88lkc3sqavklz494afbfyh100lp7xfk3f2mjln";
+    sha256 = "sha256-GaGrV8L//pU4kt4HJmY88l5BNtT0IcZox7b24AFjPCI=";
   };
 
   checkInputs = with python3.pkgs;
@@ -31,7 +31,7 @@ python3.pkgs.buildPythonApplication rec {
   meta = with lib; {
     description = "ESP8266 and ESP32 serial bootloader utility";
     homepage = "https://github.com/espressif/esptool";
-    license = licenses.gpl2;
+    license = licenses.gpl2Plus;
     maintainers = with maintainers; [ dezgeg dotlambda ];
     platforms = platforms.linux;
   };