d3a20a674c
Semi-automatic update. These checks were performed: - built on NixOS - found 0.5.3 in filename of file in /nix/store/yqsgs9hw8c3rdia75rswgk98lz3c52ih-openspecfun-0.5.3 cc "@ttuegel"
22 lines
606 B
Nix
22 lines
606 B
Nix
{ 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;
|
|
};
|
|
}
|