lol
1{ stdenv, fetchurl, gfortran }:
2
3stdenv.mkDerivation {
4 name = "openspecfun-0.5.3";
5 src = fetchurl {
6 url = "https://github.com/JuliaLang/openspecfun/archive/v0.5.3.tar.gz";
7 sha256 = "1rs1bv8jq751fv9vq79890wqf9xlbjc7lvz3ighzyfczbyjcf18m";
8 };
9
10 makeFlags = [ "prefix=$(out)" ];
11
12 nativeBuildInputs = [ gfortran ];
13
14 meta = {
15 description = "A collection of special mathematical functions";
16 homepage = https://github.com/JuliaLang/openspecfun;
17 license = stdenv.lib.licenses.mit;
18 maintainers = [ stdenv.lib.maintainers.ttuegel ];
19 platforms = stdenv.lib.platforms.all;
20 };
21}