nixpkgs/pkgs/development/libraries/science/math/openlibm/default.nix
R. RyanTM b9137d6bce openlibm: 0.5.5 -> 0.6.0
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools.

This update was made based on information from https://repology.org/metapackage/openlibm/versions.

These checks were done:

- built on NixOS

- 0 of 0 passed binary check by having a zero exit code.
- 0 of 0 passed binary check by having the new version present in output.
- found 0.6.0 with grep in /nix/store/crnh2jiksr0b3sq5v6fc9x7zrrsjgirg-openlibm-0.6.0
- directory tree listing: https://gist.github.com/c287196625881e2d6c72af761704718e
- du listing: https://gist.github.com/ac9a45900fb2ba4ff48120c343677dec
2018-06-23 18:48:17 -07:00

20 lines
600 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "openlibm-${version}";
version = "0.6.0";
src = fetchurl {
url = "https://github.com/JuliaLang/openlibm/archive/v${version}.tar.gz";
sha256 = "0a5fpm8nra5ldhjk0cqd2rx1qh32wiarkxmcqcm5xl8z7l4kjm6l";
};
makeFlags = [ "prefix=$(out)" ];
meta = {
description = "High quality system independent, portable, open source libm implementation";
homepage = http://www.openlibm.org/;
license = stdenv.lib.licenses.mit;
maintainers = [ stdenv.lib.maintainers.ttuegel ];
platforms = stdenv.lib.platforms.all;
};
}