Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
34 lines
666 B
Nix
34 lines
666 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "esptool-ck";
|
|
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 lib; {
|
|
description = "ESP8266/ESP32 build helper tool";
|
|
homepage = "https://github.com/igrr/esptool-ck";
|
|
license = licenses.gpl2Plus;
|
|
maintainers = [ maintainers.dezgeg ];
|
|
platforms = platforms.linux;
|
|
mainProgram = "esptool";
|
|
};
|
|
}
|