about summary refs log tree commit diff
path: root/pkgs/development/embedded
diff options
context:
space:
mode:
authorAlex Martens <alex@thinglab.org>2024-02-09 08:50:17 -0800
committerGitHub <noreply@github.com>2024-02-09 11:50:17 -0500
commit6babd03fa0105108e9d5e746e864904e51fe61e1 (patch)
tree4f3954d46ae69d3385e576ac06b0b599df506152 /pkgs/development/embedded
parente2a31fdb9378d830727eed39104de7ec0b89dbdc (diff)
downloadnixlib-6babd03fa0105108e9d5e746e864904e51fe61e1.tar
nixlib-6babd03fa0105108e9d5e746e864904e51fe61e1.tar.gz
nixlib-6babd03fa0105108e9d5e746e864904e51fe61e1.tar.bz2
nixlib-6babd03fa0105108e9d5e746e864904e51fe61e1.tar.lz
nixlib-6babd03fa0105108e9d5e746e864904e51fe61e1.tar.xz
nixlib-6babd03fa0105108e9d5e746e864904e51fe61e1.tar.zst
nixlib-6babd03fa0105108e9d5e746e864904e51fe61e1.zip
cargo-espflash: rename to espflash (#286386)
Diffstat (limited to 'pkgs/development/embedded')
-rw-r--r--pkgs/development/embedded/espflash/default.nix39
1 files changed, 0 insertions, 39 deletions
diff --git a/pkgs/development/embedded/espflash/default.nix b/pkgs/development/embedded/espflash/default.nix
deleted file mode 100644
index 8b3540111a71..000000000000
--- a/pkgs/development/embedded/espflash/default.nix
+++ /dev/null
@@ -1,39 +0,0 @@
-{ lib
-, rustPlatform
-, fetchCrate
-, pkg-config
-, stdenv
-, udev
-, Security
-, SystemConfiguration
-}:
-
-rustPlatform.buildRustPackage rec {
-  pname = "espflash";
-  version = "2.1.0";
-
-  src = fetchCrate {
-    inherit pname version;
-    hash = "sha256-Gd+8pA36mO+BCA0EFshboBi0etNjsiQFQU1wBYf/o6I=";
-  };
-
-  nativeBuildInputs = [ pkg-config ];
-
-  buildInputs = lib.optionals stdenv.isLinux [
-    udev
-  ] ++ lib.optionals stdenv.isDarwin [
-    Security
-    SystemConfiguration
-  ];
-
-  cargoHash = "sha256-IObAbsyrVBXt5zldirRezU7vS3R3aUihMFy2yIRWIlk=";
-
-  meta = with lib; {
-    description = "Serial flasher utility for Espressif SoCs and modules";
-    homepage = "https://github.com/esp-rs/espflash";
-    changelog = "https://github.com/esp-rs/espflash/blob/v${version}/CHANGELOG.md";
-    mainProgram = "espflash";
-    license = with licenses; [ asl20 /* or */ mit ];
-    maintainers = with maintainers; [ newam ];
-  };
-}