lcov: fix build on Darwin

Since `Memory-Process` is not listed as supported on Darwin, and according
to https://github.com/linux-test-project/lcov/issues/238#issuecomment-1709020564,
it's not required as a dependency. Therefore, it's safe to remove
`Memory-Process` from the perlDeps on Darwin and get it working again.

Co-authored-by: Reno Dakota <170618376+paparodeo@users.noreply.github.com>
This commit is contained in:
eth3lbert 2024-06-28 11:51:46 +08:00
parent 33be72b31b
commit 88feb757e7
No known key found for this signature in database

View File

@ -16,9 +16,8 @@ let
perlPackages.DevelCover
perlPackages.GD
perlPackages.JSONXS
perlPackages.MemoryProcess
perlPackages.PathTools
];
] ++ lib.optionals (!stdenv.isDarwin) [ perlPackages.MemoryProcess ];
in
stdenv.mkDerivation rec {
pname = "lcov";