Files
nixpkgs/pkgs/development/pure-modules/gplot/default.nix
T

26 lines
789 B
Nix
Raw Normal View History

2015-05-26 16:58:18 +10:00
{ stdenv, fetchurl, pkgconfig, pure, gnuplot }:
stdenv.mkDerivation rec {
baseName = "gplot";
version = "0.1";
name = "pure-${baseName}-${version}";
src = fetchurl {
url = "https://bitbucket.org/purelang/pure-lang/downloads/${name}.tar.gz";
sha256 = "841ded98e4d1cdfaf78f95481e5995d0440bfda2d5df533d6741a6e7058a882c";
};
nativeBuildInputs = [ pkgconfig ];
2015-05-26 16:58:18 +10:00
propagatedBuildInputs = [ pure gnuplot ];
makeFlags = "libdir=$(out)/lib prefix=$(out)/";
setupHook = ../generic-setup-hook.sh;
meta = {
2016-06-20 12:53:46 +02:00
description = "A pure binding to gnuplot";
2015-05-26 16:58:18 +10:00
homepage = http://puredocs.bitbucket.org/pure-gplot.html;
license = stdenv.lib.licenses.lgpl3Plus;
platforms = stdenv.lib.platforms.linux;
maintainers = with stdenv.lib.maintainers; [ asppsa ];
};
}