ploticus: add Darwin support

thanks @risicle
This commit is contained in:
Lucas Franceschino 2022-05-15 11:04:03 +02:00
parent 8714f77b8b
commit aa8e4e5a0e

View File

@ -45,6 +45,7 @@ stdenv.mkDerivation rec {
preBuild = ''
cd src
'';
makeFlags = [ "CC=cc" ];
preInstall = ''
mkdir -p "$out/bin"
@ -74,6 +75,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
maintainers = with maintainers; [ pSub ];
homepage = "http://ploticus.sourceforge.net/";
platforms = with platforms; linux;
platforms = with platforms; linux ++ darwin;
};
}