summary refs log tree commit diff
path: root/pkgs/development/pure-modules/gplot/default.nix
blob: c45f51509b71d1ce1bd38c2fbea48a0311608824 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ 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 ];
  propagatedBuildInputs = [ pure gnuplot ];
  makeFlags = [ "libdir=$(out)/lib" "prefix=$(out)/" ];
  setupHook = ../generic-setup-hook.sh;

  meta = {
    description = "A pure binding to gnuplot";
    homepage = http://puredocs.bitbucket.org/pure-gplot.html;
    license = stdenv.lib.licenses.lgpl3Plus;
    platforms = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ asppsa ];
  };
}