summary refs log tree commit diff
path: root/pkgs/development/libraries/science/math/openspecfun/default.nix
blob: 1988c0c07af59a9cbce0e427e28bd9fe4a0c58f3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ stdenv, fetchurl, gfortran }:

stdenv.mkDerivation {
  name = "openspecfun-0.4";
  src = fetchurl {
    url = "https://github.com/JuliaLang/openspecfun/archive/v0.4.tar.gz";
    sha256 = "0nsa3jjmlhcqkw5ba5ypbn3n0c8b6lc22zzlxnmxkxi9shhdx65z";
  };

  makeFlags = [ "prefix=$(out)" ];

  nativeBuildInputs = [ gfortran ];

  meta = {
    description = "A collection of special mathematical functions";
    homepage = "https://github.com/JuliaLang/openspecfun";
    license = stdenv.lib.licenses.mit;
    maintainers = [ stdenv.lib.maintainers.ttuegel ];
    platforms = stdenv.lib.platforms.all;
  };
}