1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-04 19:45:54 +00:00
nixpkgs/pkgs/applications/science/math/lp_solve/default.nix

50 lines
1 KiB
Nix
Raw Normal View History

2015-06-20 14:30:03 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "lp_solve-${version}";
version = "5.5.2.0";
src = fetchurl {
url = "http://sourceforge.net/projects/lpsolve/files/lpsolve/${version}/lp_solve_${version}_source.tar.gz";
sha256 = "176c7f023mb6b8bfmv4rfqnrlw88lsg422ca74zjh19i2h5s69sq";
};
patches = [ ./isnan.patch ];
2015-06-20 14:30:03 +01:00
buildCommand = ''
. $stdenv/setup
tar xvfz $src
(
cd lp_solve*
eval patchPhase
)
(
2015-06-20 14:30:03 +01:00
cd lp_solve*/lpsolve55
bash ccc
mkdir -pv $out/lib
cp -v bin/*/* $out/lib
)
(
cd lp_solve*/lp_solve
bash ccc
mkdir -pv $out/bin
cp -v bin/*/* $out/bin
)
(
mkdir -pv $out/include
cp -v lp_solve*/*.h $out/include
)
'';
meta = with stdenv.lib; {
description = "lp_solve is a Mixed Integer Linear Programming (MILP) solver";
2015-06-20 14:30:03 +01:00
homepage = "http://lpsolve.sourceforge.net";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ smironov ];
platforms = platforms.unix;
};
}