1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
7 url = "https://github.com/JuliaLang/openlibm/archive/v${version}.tar.gz";
8 sha256 = "sha256-vpg7nh5A5pbou7frj2N208oK5nWubYKTZUA4Ww7uwVs=";
11 makeFlags = [ "prefix=$(out)" ];
14 description = "High quality system independent, portable, open source libm implementation";
15 homepage = "https://openlibm.org/";
16 license = lib.licenses.mit;
17 maintainers = [ lib.maintainers.ttuegel ];
18 platforms = lib.platforms.all;