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