Merge pull request #173048 from W95Psp/ploticus-patch

ploticus: fix

authored by Robert Scott and committed by GitHub db5b5022 33fadf31

+4 -1
+4 -1
pkgs/tools/graphics/ploticus/default.nix
··· 4 4 , zlib 5 5 , libX11 6 6 , libpng 7 + , libjpeg 7 8 , gd 8 9 , freetype 9 10 }: ··· 36 37 libpng 37 38 gd 38 39 freetype 40 + libjpeg 39 41 ]; 40 42 41 43 hardeningDisable = [ "format" ]; ··· 43 45 preBuild = '' 44 46 cd src 45 47 ''; 48 + makeFlags = [ "CC=cc" ]; 46 49 47 50 preInstall = '' 48 51 mkdir -p "$out/bin" ··· 72 75 license = licenses.gpl2Plus; 73 76 maintainers = with maintainers; [ pSub ]; 74 77 homepage = "http://ploticus.sourceforge.net/"; 75 - platforms = with platforms; linux; 78 + platforms = with platforms; linux ++ darwin; 76 79 }; 77 80 }