teensy-udev-rules: correct meta attribute

* Correct license attribute.
* Use longDescription and description attributes correctly.
This commit is contained in:
Aidan Gauland 2023-11-25 18:07:21 +13:00
parent b3610b80ce
commit 2456fc6040
No known key found for this signature in database
GPG key ID: 16E68DD2D0E77C91

View file

@ -19,7 +19,8 @@ stdenv.mkDerivation {
meta = with lib; {
homepage = "https://www.pjrc.com/teensy/00-teensy.rules";
description = ''
description = "udev rules for the Teensy microcontrollers";
longDescription = ''
udev rules that give non-root users permission to communicate with the
Teensy family of microcontrolers.
@ -28,7 +29,7 @@ stdenv.mkDerivation {
this package's homepage) for possible workarounds.
'';
platforms = platforms.linux;
license = "unknown";
license = licenses.unfree; # No license specified.
maintainers = with maintainers; [ aidalgol ];
};
}