3
0
Fork 0
forked from mirrors/nixpkgs

Merge pull request #188621 from hanleym/smartmontools

smartmontools: fix lib.optional -> lib.optionals
This commit is contained in:
superherointj 2022-08-28 10:40:01 -03:00 committed by GitHub
commit 3abcf56e52
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -18,7 +18,7 @@ let
sha256 = "sha256-0dtLev4JjeHsS259+qOgg19rz4yjkeX4D3ooUgS4RTI=";
name = "smartmontools-drivedb.h";
};
scriptPath = lib.makeBinPath ([ gnused ] ++ lib.optional enableMail [ inetutils mailutils ]);
scriptPath = lib.makeBinPath ([ gnused ] ++ lib.optionals enableMail [ inetutils mailutils ]);
in
stdenv.mkDerivation rec {