tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
ploticus: add Darwin support
thanks @risicle
Lucas Franceschino
3 years ago
aa8e4e5a
8714f77b
+2
-1
1 changed file
expand all
collapse all
unified
split
pkgs
tools
graphics
ploticus
default.nix
+2
-1
pkgs/tools/graphics/ploticus/default.nix
···
45
preBuild = ''
46
cd src
47
'';
0
48
49
preInstall = ''
50
mkdir -p "$out/bin"
···
74
license = licenses.gpl2Plus;
75
maintainers = with maintainers; [ pSub ];
76
homepage = "http://ploticus.sourceforge.net/";
77
-
platforms = with platforms; linux;
78
};
79
}
···
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
}