rPackages.bigmemory: fix evaluation on darwin

On Darwin pkgs.libuuid is null, hence evaluating `.dev` fails.
This commit is contained in:
Mario Rodas 2022-11-23 04:20:00 +00:00
parent 93568862a6
commit e76e9ed99c

View File

@ -511,7 +511,7 @@ let
nat = [ pkgs.which ];
nat_templatebrains = [ pkgs.which ];
pbdZMQ = lib.optionals stdenv.isDarwin [ pkgs.darwin.binutils ];
bigmemory = [ pkgs.libuuid.dev ];
bigmemory = lib.optionals stdenv.isLinux [ pkgs.libuuid.dev ];
clustermq = [ pkgs.pkg-config ];
RMark = [ pkgs.which ];
RPushbullet = [ pkgs.which ];