Skip to content

Commit

Permalink
libsmbios: Only works on x86
Browse files Browse the repository at this point in the history
  • Loading branch information
dezgeg committed Sep 13, 2017
1 parent 87fa247 commit 9aa998e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/os-specific/linux/libsmbios/default.nix
Expand Up @@ -30,6 +30,6 @@ stdenv.mkDerivation {
homepage = http://linux.dell.com/libsmbios/main;
description = "A library to obtain BIOS information";
license = stdenv.lib.licenses.gpl2Plus; # alternatively, under the Open Software License version 2.1
platforms = stdenv.lib.platforms.linux;
platforms = [ "i686-linux" "x86_64-linux" ];
};
}

1 comment on commit 9aa998e

@bjornfor
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If there are a lot of these, maybe add something like platforms.x86Linux to keep things DRY?

Please sign in to comment.