about summary refs log tree commit diff
path: root/pkgs/os-specific
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2023-11-25 09:50:45 -0500
committerGitHub <noreply@github.com>2023-11-25 09:50:45 -0500
commitf2d3ee6d90350ed6fa9f8cc927decad45c6bab33 (patch)
treee7850f859630388f1750248f36aa2294e708f4f4 /pkgs/os-specific
parent22dc6b8a30cd1fbc6973f3b257581e3aa8ff9623 (diff)
parent2456fc6040719bfb758283d7aa326b167d6c16b2 (diff)
Merge pull request #269789 from aidalgol/teensy-udev-rules-license-fix
teensy-udev-rules: correct meta attribute
Diffstat (limited to 'pkgs/os-specific')
-rw-r--r--pkgs/os-specific/linux/teensy-udev-rules/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/teensy-udev-rules/default.nix b/pkgs/os-specific/linux/teensy-udev-rules/default.nix
index e3d50eee5f675..326cf0a3245f7 100644
--- a/pkgs/os-specific/linux/teensy-udev-rules/default.nix
+++ b/pkgs/os-specific/linux/teensy-udev-rules/default.nix
@@ -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 ];
   };
 }