lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 18.03-beta 20 lines 600 B view raw
1{ stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 name = "openlibm-${version}"; 5 version = "0.5.4"; 6 src = fetchurl { 7 url = "https://github.com/JuliaLang/openlibm/archive/v${version}.tar.gz"; 8 sha256 = "0cwqqqlblj3kzp9aq1wnpfs1fl0qd1wp1xzm5shb09w06i4rh9nn"; 9 }; 10 11 makeFlags = [ "prefix=$(out)" ]; 12 13 meta = { 14 description = "High quality system independent, portable, open source libm implementation"; 15 homepage = http://www.openlibm.org/; 16 license = stdenv.lib.licenses.mit; 17 maintainers = [ stdenv.lib.maintainers.ttuegel ]; 18 platforms = stdenv.lib.platforms.all; 19 }; 20}