From 9928e07c0f722669371978761a3dce83b2cf2ec8 Mon Sep 17 00:00:00 2001 From: Michal Sojka Date: Fri, 4 Dec 2020 13:53:17 +0100 Subject: [PATCH] stlink: Correct comment about the use of services.udev.packages services.udev.pkgs does not exists, but services.udev.packages does. --- pkgs/development/tools/misc/stlink/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/tools/misc/stlink/default.nix b/pkgs/development/tools/misc/stlink/default.nix index 7793d9185e7..7595b84721c 100644 --- a/pkgs/development/tools/misc/stlink/default.nix +++ b/pkgs/development/tools/misc/stlink/default.nix @@ -5,7 +5,7 @@ let libusb1' = if stdenv.isDarwin then libusb1.override { withStatic = true; } else libusb1; # IMPORTANT: You need permissions to access the stlink usb devices. -# Add services.udev.pkgs = [ pkgs.stlink ] to your configuration.nix +# Add services.udev.packages = [ pkgs.stlink ] to your configuration.nix in stdenv.mkDerivation rec { pname = "stlink";