about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/hwdata/default.nix
diff options
context:
space:
mode:
authorIngo Blechschmidt <iblech@web.de>2021-02-15 09:22:01 +0100
committerIngo Blechschmidt <iblech@web.de>2021-02-16 23:15:02 +0100
commitd9a5c6fa604688daf2a383de957be4b2ddf7d826 (patch)
treefa0239614aa78ba20336f4197db365bdd006e317 /pkgs/os-specific/linux/hwdata/default.nix
parentc0f4dcb71deb2b1bd0ad27467b379f608f2db513 (diff)
hwdata: remove restriction to platforms.linux
hwdata is just a collection of (plain-text) databases and hence makes
sense on any platform. The impetus for this commit was #112644, where we
wanted to change pciutils so that it uses the database from hwdata. At
this time, pciutils was marked as platforms.unix but hwdata only as
platforms.linux.
Diffstat (limited to 'pkgs/os-specific/linux/hwdata/default.nix')
-rw-r--r--pkgs/os-specific/linux/hwdata/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/os-specific/linux/hwdata/default.nix b/pkgs/os-specific/linux/hwdata/default.nix
index a3d8fd0426182..bd52f37e62f89 100644
--- a/pkgs/os-specific/linux/hwdata/default.nix
+++ b/pkgs/os-specific/linux/hwdata/default.nix
@@ -24,7 +24,7 @@ stdenv.mkDerivation rec {
   meta = {
     homepage = "https://github.com/vcrhonek/hwdata";
     description = "Hardware Database, including Monitors, pci.ids, usb.ids, and video cards";
-    license = lib.licenses.gpl2;
-    platforms = lib.platforms.linux;
+    license = lib.licenses.gpl2Plus;
+    platforms = lib.platforms.all;
   };
 }