summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorRouven Czerwinski <rouven@czerwinskis.de>2021-07-28 07:17:41 +0200
committerRouven Czerwinski <rouven@czerwinskis.de>2021-07-28 07:17:43 +0200
commit729143096b5bd0922f4608015d0e978902a94586 (patch)
tree780e41afb461d2e0b9df977b32f107badd88e1d5 /pkgs/development
parent8ecc61c91a596df7d3293603a9c2384190c1b89a (diff)
downloadnixpkgs-729143096b5bd0922f4608015d0e978902a94586.tar
nixpkgs-729143096b5bd0922f4608015d0e978902a94586.tar.gz
nixpkgs-729143096b5bd0922f4608015d0e978902a94586.tar.bz2
nixpkgs-729143096b5bd0922f4608015d0e978902a94586.tar.lz
nixpkgs-729143096b5bd0922f4608015d0e978902a94586.tar.xz
nixpkgs-729143096b5bd0922f4608015d0e978902a94586.tar.zst
nixpkgs-729143096b5bd0922f4608015d0e978902a94586.zip
usbsdmux: 0.2.0 -> 0.2.1
New upstream release:
- The get command now respects the hardware signal priority. Until now
  this command returned the wrong value if the USB-SD-Mux was switched
  to off.
- An error leading to creation of files in /dev/ when using the tool as
  root and if the device-node does not exist was fixed.  This error lead
  to errors like OSError: [Errno 25] Inappropriate ioctl for device. Now
  the actual error File not found will be raised instead.
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/tools/misc/usbsdmux/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/development/tools/misc/usbsdmux/default.nix b/pkgs/development/tools/misc/usbsdmux/default.nix
index ed7a6d8a220..07db23607ce 100644
--- a/pkgs/development/tools/misc/usbsdmux/default.nix
+++ b/pkgs/development/tools/misc/usbsdmux/default.nix
@@ -2,11 +2,11 @@
 
 python3Packages.buildPythonApplication rec {
   pname = "usbsdmux";
-  version = "0.2.0";
+  version = "0.2.1";
 
   src = python3Packages.fetchPypi {
     inherit pname version;
-    sha256 = "sha256-ydDUSqBTY62iOtWdgrFh2qrO9LMi+OCYIw5reh6uoIA=";
+    sha256 = "sha256-gCxwR5jxzkH22B6nxBwAd0HpwWMIj/zp5VROJ0IWq7c=";
   };
 
   # usbsdmux is not meant to be used as an importable module and has no tests