Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at litex 27 lines 610 B view raw
1{ lib 2, fetchFromGitHub 3, rustPlatform 4, pkg-config 5, systemd 6, 7}: 8rustPlatform.buildRustPackage rec { 9 pname = "espmonitor"; 10 version = "0.10.0"; 11 12 src = fetchFromGitHub { 13 owner = "esp-rs"; 14 repo = pname; 15 rev = "v${version}"; 16 sha256 = "hWFdim84L2FfG6p9sEf+G5Uq4yhp5kv1ZMdk4sMHa+4="; 17 }; 18 19 cargoSha256 = "d0tN6NZiAd+RkRy941fIaVEw/moz6tkpL0rN8TZew3g="; 20 21 meta = with lib; { 22 description = "Cargo tool for monitoring ESP32/ESP8266 execution"; 23 homepage = "https://github.com/esp-rs/espmonitor"; 24 license = licenses.gpl3Plus; 25 maintainers = with maintainers; [ xanderio ]; 26 }; 27}