* Gnuplot 4.0 (without X support).
svn path=/nixpkgs/trunk/; revision=2993
This commit is contained in:
parent
24d6f803f0
commit
8774874b89
@ -143,6 +143,10 @@ rec {
|
||||
inherit (xlibs) libXaw;
|
||||
};
|
||||
|
||||
gnuplot = (import ../tools/graphics/gnuplot) {
|
||||
inherit fetchurl stdenv zlib libpng texinfo;
|
||||
};
|
||||
|
||||
exif = (import ../tools/graphics/exif) {
|
||||
inherit fetchurl stdenv pkgconfig libexif popt;
|
||||
};
|
||||
|
19
pkgs/tools/graphics/gnuplot/default.nix
Normal file
19
pkgs/tools/graphics/gnuplot/default.nix
Normal file
@ -0,0 +1,19 @@
|
||||
{stdenv, fetchurl, zlib, libpng, texinfo}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
# Gnuplot (which isn't open source) has a license that requires that
|
||||
# we "add special version identification to distinguish your version
|
||||
# in addition to the base release version number". Hence the "nix"
|
||||
# suffix.
|
||||
name = "gnuplot-4.0-nix";
|
||||
|
||||
# builder = ./builder.sh;
|
||||
src = fetchurl {
|
||||
url = http://heanet.dl.sourceforge.net/sourceforge/gnuplot/gnuplot-4.0.0.tar.gz;
|
||||
md5 = "66258443d9f93cc4f46b147dac33e63a";
|
||||
};
|
||||
|
||||
configureFlags = ["--without-x"];
|
||||
|
||||
buildInputs = [zlib libpng texinfo];
|
||||
}
|
Loading…
Reference in New Issue
Block a user