lol
at 16.09-beta 21 lines 604 B view raw
1{ stdenv, fetchurl, gfortran }: 2 3stdenv.mkDerivation { 4 name = "openspecfun-0.4"; 5 src = fetchurl { 6 url = "https://github.com/JuliaLang/openspecfun/archive/v0.4.tar.gz"; 7 sha256 = "0nsa3jjmlhcqkw5ba5ypbn3n0c8b6lc22zzlxnmxkxi9shhdx65z"; 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}