My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/tools/graphics/ploticus/default.nix

16 lines
327 B

{stdenv, fetchurl, zlib, libX11, libpng}:
stdenv.mkDerivation {
name = "ploticus-2.33";
builder = ./builder.sh;
src = fetchurl {
url = mirror://sourceforge/ploticus/pl233src.tar.gz;
md5 = "1e242200e7e52f7a24041c95f58f2fc1";
};
buildInputs = [zlib libX11 libpng];
patches = [./ploticus-install.patch];
}