summary refs log tree commit diff
path: root/pkgs/development/pure-modules/gsl/default.nix
blob: 7ba60a9ea6c498e06bef50210b925c263a5f1746 (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
{ lib, stdenv, fetchurl, pure, pkg-config, gsl }:

stdenv.mkDerivation rec {
  pname = "pure-gsl";
  version = "0.12";

  src = fetchurl {
    url = "https://bitbucket.org/purelang/pure-lang/downloads/pure-gsl-${version}.tar.gz";
    sha256 = "06bdd873d5417d90ca35093056a060b77365123ed24c3ac583cd3922d4c78a75";
  };

  nativeBuildInputs = [ pkg-config ];
  propagatedBuildInputs = [ pure gsl ];
  makeFlags = [ "libdir=$(out)/lib" "prefix=$(out)/" ];
  setupHook = ../generic-setup-hook.sh;

  meta = {
    description = "GNU Scientific Library interface for Pure";
    homepage = "http://puredocs.bitbucket.org/pure-gsl.html";
    license = lib.licenses.gpl3Plus;
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ asppsa ];
  };
}