mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-27 22:03:54 +03:00
21f17d69f6
Build-tested on x86_64 Linux & Mac.
18 lines
526 B
Nix
18 lines
526 B
Nix
{ stdenv, fetchurl }:
|
|
stdenv.mkDerivation {
|
|
name = "liblbfgs-1.10";
|
|
|
|
configureFlags = "--enable-sse2";
|
|
src = fetchurl {
|
|
url = https://github.com/downloads/chokkan/liblbfgs/liblbfgs-1.10.tar.gz;
|
|
sha256 = "1kv8d289rbz38wrpswx5dkhr2yh4fg4h6sszkp3fawxm09sann21";
|
|
};
|
|
|
|
meta = {
|
|
description = "Library of Limited-memory Broyden-Fletcher-Goldfarb-Shanno (L-BFGS)";
|
|
homepage = http://www.chokkan.org/software/liblbfgs/;
|
|
license = stdenv.lib.licenses.mit;
|
|
platforms = stdenv.lib.platforms.unix;
|
|
};
|
|
}
|