Unverified Commit 88feb757 authored by eth3lbert's avatar eth3lbert
Browse files

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: default avatarReno Dakota <170618376+paparodeo@users.noreply.github.com>
parent 33be72b3
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -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";