dmidecode: set meta.platforms to linux

+2 -1
+2 -1
pkgs/os-specific/linux/dmidecode/default.nix
··· 10 11 makeFlags = "prefix=$(out)"; 12 13 - meta = { 14 homepage = http://www.nongnu.org/dmidecode/; 15 description = "A tool that reads information about your system's hardware from the BIOS according to the SMBIOS/DMI standard"; 16 }; 17 }
··· 10 11 makeFlags = "prefix=$(out)"; 12 13 + meta = with stdenv.lib; { 14 homepage = http://www.nongnu.org/dmidecode/; 15 description = "A tool that reads information about your system's hardware from the BIOS according to the SMBIOS/DMI standard"; 16 + platforms = platforms.linux; 17 }; 18 }