lol
0
fork

Configure Feed

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

at 23.05-pre 19 lines 602 B view raw
1{ lib, stdenv, fetchurl }: 2stdenv.mkDerivation rec { 3 pname = "liblbfgs"; 4 version = "1.10"; 5 6 configureFlags = [ "--enable-sse2" ]; 7 src = fetchurl { 8 url = "https://github.com/downloads/chokkan/liblbfgs/liblbfgs-${version}.tar.gz"; 9 sha256 = "1kv8d289rbz38wrpswx5dkhr2yh4fg4h6sszkp3fawxm09sann21"; 10 }; 11 12 meta = { 13 broken = (stdenv.isLinux && stdenv.isAarch64); 14 description = "Library of Limited-memory Broyden-Fletcher-Goldfarb-Shanno (L-BFGS)"; 15 homepage = "http://www.chokkan.org/software/liblbfgs/"; 16 license = lib.licenses.mit; 17 platforms = lib.platforms.unix; 18 }; 19}