6f7773cc2a
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/esptool-ck/versions.
29 lines
636 B
Nix
29 lines
636 B
Nix
{ stdenv, fetchFromGitHub }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "esptool-ck-${version}";
|
|
version = "0.4.13";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "igrr";
|
|
repo = "esptool-ck";
|
|
rev = "0.4.13";
|
|
sha256 = "1cb81b30a71r7i0gmkh2qagfx9lhq0myq5i37fk881bq6g7i5n2k";
|
|
};
|
|
|
|
makeFlags = [ "VERSION=${version}" ];
|
|
|
|
installPhase = ''
|
|
mkdir -p $out/bin
|
|
cp esptool $out/bin
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "ESP8266/ESP32 build helper tool";
|
|
homepage = https://github.com/igrr/esptool-ck;
|
|
license = licenses.gpl2;
|
|
maintainers = [ maintainers.dezgeg ];
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|