mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-25 06:13:54 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
33 lines
937 B
Nix
33 lines
937 B
Nix
{ 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 ];
|
|
};
|
|
}
|