linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / development / libraries / science / math / openlibm / default.nix
blob34ebc36ebb92f7f0e8c97fd9a4c449b9ea87c9d5
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4   pname = "openlibm";
5   version = "0.7.5";
6   src = fetchurl {
7     url = "https://github.com/JuliaLang/openlibm/archive/v${version}.tar.gz";
8     sha256 = "sha256-vpg7nh5A5pbou7frj2N208oK5nWubYKTZUA4Ww7uwVs=";
9   };
11   makeFlags = [ "prefix=$(out)" ];
13   meta = {
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;
19   };