Merge pull request #269789 from aidalgol/teensy-udev-rules-license-fix

teensy-udev-rules: correct meta attribute
This commit is contained in:
Nick Cao 2023-11-25 09:50:45 -05:00 committed by GitHub
commit f2d3ee6d90
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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