about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/science/math/openspecfun/default.nix
blob: 3a4c5a78438575f1481a785db871b3d6b6e25914 (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.5.3";
  src = fetchurl {
    url = "https://github.com/JuliaLang/openspecfun/archive/v0.5.3.tar.gz";
    sha256 = "1rs1bv8jq751fv9vq79890wqf9xlbjc7lvz3ighzyfczbyjcf18m";
  };

  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;
  };
}