summary refs log tree commit diff
path: root/pkgs/development/tools/rust
diff options
context:
space:
mode:
authorLassulus <github@lassul.us>2020-08-29 13:51:07 +0200
committerGitHub <noreply@github.com>2020-08-29 13:51:07 +0200
commite021b8eea9a3fc87baa3f150753c3226436b67b9 (patch)
treefdf74b9e3d8ef00e2464dda153eeb1927ac9fefe /pkgs/development/tools/rust
parent2983c1b7167859e9560dc66a3605a003cdf66286 (diff)
parent61c25dfb1ba2d3d3ba492c795d10e61fb48e27a3 (diff)
downloadnixpkgs-e021b8eea9a3fc87baa3f150753c3226436b67b9.tar
nixpkgs-e021b8eea9a3fc87baa3f150753c3226436b67b9.tar.gz
nixpkgs-e021b8eea9a3fc87baa3f150753c3226436b67b9.tar.bz2
nixpkgs-e021b8eea9a3fc87baa3f150753c3226436b67b9.tar.lz
nixpkgs-e021b8eea9a3fc87baa3f150753c3226436b67b9.tar.xz
nixpkgs-e021b8eea9a3fc87baa3f150753c3226436b67b9.tar.zst
nixpkgs-e021b8eea9a3fc87baa3f150753c3226436b67b9.zip
Merge pull request #96164 from fooker/master
Init cargo-embed and cargo-flash at 0.8.0
Diffstat (limited to 'pkgs/development/tools/rust')
-rw-r--r--pkgs/development/tools/rust/cargo-embed/default.nix27
-rw-r--r--pkgs/development/tools/rust/cargo-flash/default.nix27
2 files changed, 54 insertions, 0 deletions
diff --git a/pkgs/development/tools/rust/cargo-embed/default.nix b/pkgs/development/tools/rust/cargo-embed/default.nix
new file mode 100644
index 00000000000..dafcd1ded2f
--- /dev/null
+++ b/pkgs/development/tools/rust/cargo-embed/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, lib
+, rustPlatform, fetchFromGitHub
+, libusb1, pkg-config, rustfmt }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "cargo-embed";
+  version = "0.8.0";
+
+  src = fetchFromGitHub {
+    owner = "probe-rs";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "0klkgl7c42vhqxj6svw26lcr7rccq89bl17jn3p751x6281zvr35";
+  };
+
+  cargoSha256 = "0w21q2fpr077m8jr24ld3qjimwk1m4fy9dh14fq9nv5xd4f5s8n8";
+
+  nativeBuildInputs = [ pkg-config rustfmt ];
+  buildInputs = [ libusb1 ];
+
+  meta = with lib; {
+    description = "A cargo extension for working with microcontrollers.";
+    homepage = "http://probe.rs/";
+    license = with licenses; [ asl20 /* or */ mit ];
+    maintainers = with maintainers; [ fooker ];
+  };
+}
diff --git a/pkgs/development/tools/rust/cargo-flash/default.nix b/pkgs/development/tools/rust/cargo-flash/default.nix
new file mode 100644
index 00000000000..d4844de21a0
--- /dev/null
+++ b/pkgs/development/tools/rust/cargo-flash/default.nix
@@ -0,0 +1,27 @@
+{ stdenv, lib
+, rustPlatform, fetchFromGitHub
+, libusb1, pkg-config, rustfmt }:
+
+rustPlatform.buildRustPackage rec {
+  pname = "cargo-flash";
+  version = "0.8.0";
+
+  src = fetchFromGitHub {
+    owner = "probe-rs";
+    repo = pname;
+    rev = "v${version}";
+    sha256 = "1bcpv1r4pdpp22w7za7kdy7jl487x3nlwxiz6sqq3iq6wq3j9zj0";
+  };
+
+  cargoSha256 = "1pf117fgw9x9diksqv58cw7i0kzmp25yj73y5ll69sk46b6z4j90";
+
+  nativeBuildInputs = [ pkg-config rustfmt ];
+  buildInputs = [ libusb1 ];
+
+  meta = with lib; {
+    description = "A cargo extension for working with microcontrollers.";
+    homepage = "http://probe.rs/";
+    license = with licenses; [ asl20 /* or */ mit ];
+    maintainers = with maintainers; [ fooker ];
+  };
+}