about summary refs log tree commit diff
path: root/nixpkgs/pkgs/os-specific/linux/picoprobe-udev-rules/default.nix
blob: 4a651bf473e5b7f1503e5dfc6f1c80799d2654f7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{ lib, stdenv, fetchurl }:

## Usage
# In NixOS, simply add this package to services.udev.packages:
#   services.udev.packages = [ pkgs.picoprobe-udev-rules ];

stdenv.mkDerivation rec {
  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=";
  };

  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 = with maintainers; [ mglolenstine ];
  };
}