summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlex Martens <alex@thinglab.org>2022-03-10 19:08:14 -0800
committerAlex Martens <alex@thinglab.org>2022-03-10 19:08:14 -0800
commitd844a61cc4066dec0c654c9b220cff13d3c78ec4 (patch)
treebb4555359ecf2c90b70490a7599a94410c0ffa4f
parentcb9136f1ad511371a88b4da087af02d43fe6e7bf (diff)
downloadnixpkgs-d844a61cc4066dec0c654c9b220cff13d3c78ec4.tar
nixpkgs-d844a61cc4066dec0c654c9b220cff13d3c78ec4.tar.gz
nixpkgs-d844a61cc4066dec0c654c9b220cff13d3c78ec4.tar.bz2
nixpkgs-d844a61cc4066dec0c654c9b220cff13d3c78ec4.tar.lz
nixpkgs-d844a61cc4066dec0c654c9b220cff13d3c78ec4.tar.xz
nixpkgs-d844a61cc4066dec0c654c9b220cff13d3c78ec4.tar.zst
nixpkgs-d844a61cc4066dec0c654c9b220cff13d3c78ec4.zip
probe-run: 0.3.1 -> 0.3.2
-rw-r--r--pkgs/development/tools/rust/probe-run/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/development/tools/rust/probe-run/default.nix b/pkgs/development/tools/rust/probe-run/default.nix
index 2626de0f84b..a668fdd1172 100644
--- a/pkgs/development/tools/rust/probe-run/default.nix
+++ b/pkgs/development/tools/rust/probe-run/default.nix
@@ -3,14 +3,14 @@
 
 rustPlatform.buildRustPackage rec {
   pname = "probe-run";
-  version = "0.3.1";
+  version = "0.3.2";
 
   src = fetchCrate {
     inherit pname version;
-    sha256 = "1nfbpdx378p988q75hka9r8zp3xb9zy3dnagcxmha6dca5dhgsdm";
+    sha256 = "sha256-SXA77LXM1SuBJ8BH+ahwJl/3gWsCbdLXBiHZdJySWq0=";
   };
 
-  cargoSha256 = "05p3vmar00215x4mwsvs5knf4wrwmpq52rmbbi6b4qaqs3gqaghy";
+  cargoSha256 = "sha256-e9POSuA/I7IUKUOxMTfCWxNn0AicojpGQpxamzmHa7g=";
 
   nativeBuildInputs = [ pkg-config ];
   buildInputs = [ libusb1 ]
@@ -21,6 +21,6 @@ rustPlatform.buildRustPackage rec {
     homepage = "https://github.com/knurling-rs/probe-run";
     changelog = "https://github.com/knurling-rs/probe-run/blob/v${version}/CHANGELOG.md";
     license = with licenses; [ asl20 /* or */ mit ];
-    maintainers = with maintainers; [ hoverbear ];
+    maintainers = with maintainers; [ hoverbear newam ];
   };
 }