lol
at 24.11-pre 24 lines 625 B view raw
1{ lib, stdenv, fetchFromGitHub, gfortran }: 2 3stdenv.mkDerivation rec { 4 pname = "openspecfun"; 5 version = "0.5.7"; 6 src = fetchFromGitHub { 7 owner = "JuliaLang"; 8 repo = "openspecfun"; 9 rev = "v${version}"; 10 sha256 = "sha256-fx9z6bbU2V4x6Pr7/vmlSxkWxZ6qTYuPxnfqKLv08CA="; 11 }; 12 13 makeFlags = [ "prefix=$(out)" ]; 14 15 nativeBuildInputs = [ gfortran ]; 16 17 meta = { 18 description = "A collection of special mathematical functions"; 19 homepage = "https://github.com/JuliaLang/openspecfun"; 20 license = lib.licenses.mit; 21 maintainers = [ lib.maintainers.ttuegel ]; 22 platforms = lib.platforms.all; 23 }; 24}