mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-11 16:23:26 +00:00
2ee63edf18
This makes sure the udev rules shipped with the software are present in `$out/lib/udev/rules.d`, so it becomes possible to just set `services.udev.packages = [ pkgs.usbsdmux ];` to get them picked up.
34 lines
975 B
Nix
34 lines
975 B
Nix
{ lib, python3Packages, fetchPypi }:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "usbsdmux";
|
|
version = "24.1.1";
|
|
|
|
src = fetchPypi {
|
|
inherit pname version;
|
|
sha256 = "sha256-OtGgToDGUr6pBu9+LS/DxaYw/9+Pd6jPhxVDAM22HB4=";
|
|
};
|
|
|
|
# Remove the wrong GROUP=plugdev.
|
|
# The udev rule already has TAG+="uaccess", which is sufficient.
|
|
postPatch = ''
|
|
substituteInPlace contrib/udev/99-usbsdmux.rules \
|
|
--replace-fail 'TAG+="uaccess", GROUP="plugdev"' 'TAG+="uaccess"'
|
|
'';
|
|
|
|
# usbsdmux is not meant to be used as an importable module and has no tests
|
|
doCheck = false;
|
|
|
|
postInstall = ''
|
|
install -Dm0444 -t $out/lib/udev/rules.d/ contrib/udev/99-usbsdmux.rules
|
|
'';
|
|
|
|
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;
|
|
};
|
|
}
|