summary refs log tree commit diff
path: root/pkgs/development/tools/misc/usbsdmux/default.nix
diff options
context:
space:
mode:
authorRouven Czerwinski <rouven@czerwinskis.de>2020-12-13 06:58:59 +0100
committerAndreas Rammhold <andreas@rammhold.de>2020-12-14 21:49:37 +0100
commitaf2ab765157d623533098ddc97662e27bd568c72 (patch)
tree14c28099274e9b38f4a1580bca063132b6051212 /pkgs/development/tools/misc/usbsdmux/default.nix
parent95d1e64c4acfde721fdaa4355210fd1e21c544ae (diff)
downloadnixpkgs-af2ab765157d623533098ddc97662e27bd568c72.tar
nixpkgs-af2ab765157d623533098ddc97662e27bd568c72.tar.gz
nixpkgs-af2ab765157d623533098ddc97662e27bd568c72.tar.bz2
nixpkgs-af2ab765157d623533098ddc97662e27bd568c72.tar.lz
nixpkgs-af2ab765157d623533098ddc97662e27bd568c72.tar.xz
nixpkgs-af2ab765157d623533098ddc97662e27bd568c72.tar.zst
nixpkgs-af2ab765157d623533098ddc97662e27bd568c72.zip
usbsdmux: init at 0.1.8
Add the usbsdmux utility which is used to control the USB-SD-Mux
developed by the Linux Automation GmBH.
Diffstat (limited to 'pkgs/development/tools/misc/usbsdmux/default.nix')
-rw-r--r--pkgs/development/tools/misc/usbsdmux/default.nix19
1 files changed, 19 insertions, 0 deletions
diff --git a/pkgs/development/tools/misc/usbsdmux/default.nix b/pkgs/development/tools/misc/usbsdmux/default.nix
new file mode 100644
index 00000000000..59b5dc98239
--- /dev/null
+++ b/pkgs/development/tools/misc/usbsdmux/default.nix
@@ -0,0 +1,19 @@
+{ lib, python3Packages }:
+
+python3Packages.buildPythonApplication rec {
+  pname = "usbsdmux";
+  version = "0.1.8";
+
+  src = python3Packages.fetchPypi {
+    inherit pname version;
+    sha256 = "0m3d0rs9s5v5hnsjkfybmd8v54gn7rc1dbg5vc48rryhc969pr9f";
+  };
+
+  meta = with lib; {
+    description = "Control software for the LXA USB-SD-Mux";
+    homepage = "https://github.com/linux-automation/usbsdmux";
+    license = licenses.lgpl21;
+    maintainers = with maintainers; [ emantor ];
+    platforms = with platforms; linux;
+  };
+}