Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

44 lines
1000 B
Nix

{
lib,
stdenv,
fetchurl,
udevCheckHook,
}:
## Usage
# In NixOS, simply add this package to services.udev.packages:
# services.udev.packages = [ pkgs.picoprobe-udev-rules ];
stdenv.mkDerivation {
pname = "picoprobe-udev-rules";
version = "unstable-2023-01-31";
src = fetchurl {
url = "https://raw.githubusercontent.com/probe-rs/webpage/1cba61acc6ecb5ff96f74641269844ad88ad8ad5/static/files/69-probe-rs.rules";
sha256 = "sha256-vQMPX3Amttja0u03KWGnPDAVTGM9ekJ+IBTjW+xlJS0=";
};
nativeBuildInputs = [
udevCheckHook
];
doInstallCheck = true;
dontUnpack = true;
dontBuild = true;
installPhase = ''
runHook preInstall
install -D $src $out/lib/udev/rules.d/69-probe-rs.rules
runHook postInstall
'';
meta = with lib; {
homepage = "https://probe.rs/docs/getting-started/probe-setup/#udev-rules";
description = "Picoprobe udev rules list";
platforms = platforms.linux;
license = licenses.gpl2Only;
maintainers = [ ];
};
}