1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/science/math/liblbfgs/default.nix
2014-07-28 11:31:14 +02:00

17 lines
483 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;
};
}