mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
Fixing a bug in a buildInputs list.
svn path=/nixpkgs/branches/stdenv-updates/; revision=23609
This commit is contained in:
parent
32071d5b4d
commit
45e088b514
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ stdenv.mkDerivation rec {
|
|||
'';
|
||||
|
||||
propagatedBuildInputs = [ libusb ]
|
||||
++ stdenv.lib.optional isPC [ libsmbios ];
|
||||
++ stdenv.lib.optional isPC libsmbios;
|
||||
|
||||
preConfigure = ''
|
||||
for i in hald/linux/probing/probe-smbios.c hald/linux/osspec.c \
|
||||
|
|
Loading…
Reference in a new issue