nixpkgs/pkgs/development/libraries/science/math/openspecfun/default.nix

22 lines
608 B
Nix
Raw Normal View History

2015-10-10 18:55:30 +01:00
{ stdenv, fetchurl, gfortran }:
stdenv.mkDerivation {
name = "openspecfun-0.5.3";
2015-10-10 18:55:30 +01:00
src = fetchurl {
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";
homepage = "https://github.com/JuliaLang/openspecfun";
2015-10-10 18:55:30 +01:00
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.ttuegel ];
platforms = stdenv.lib.platforms.all;
};
}