2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchurl, gfortran }:
|
2015-10-10 18:55:30 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2018-02-27 17:02:15 +00:00
|
|
|
name = "openspecfun-0.5.3";
|
2015-10-10 18:55:30 +01:00
|
|
|
src = fetchurl {
|
2018-02-27 17:02:15 +00:00
|
|
|
url = "https://github.com/JuliaLang/openspecfun/archive/v0.5.3.tar.gz";
|
|
|
|
sha256 = "1rs1bv8jq751fv9vq79890wqf9xlbjc7lvz3ighzyfczbyjcf18m";
|
2015-10-10 18:55:30 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
makeFlags = [ "prefix=$(out)" ];
|
|
|
|
|
|
|
|
nativeBuildInputs = [ gfortran ];
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A collection of special mathematical functions";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/JuliaLang/openspecfun";
|
2021-01-21 17:00:13 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
|
|
platforms = lib.platforms.all;
|
2015-10-10 18:55:30 +01:00
|
|
|
};
|
|
|
|
}
|