nixpkgs/pkgs/applications/science/math/clp/default.nix
R. RyanTM 332c600f7d clp: 1.17.1 -> 1.17.2
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/clp/versions
2019-06-01 04:05:51 -07:00

23 lines
617 B
Nix

{ stdenv, fetchurl, zlib }:
stdenv.mkDerivation rec {
version = "1.17.2";
name = "clp-${version}";
src = fetchurl {
url = "https://www.coin-or.org/download/source/Clp/Clp-${version}.tgz";
sha256 = "1fkmgpn0zaraymi6s3isrrscgjxggcs2yjrx7jfy4hb1jacx71zz";
};
propagatedBuildInputs = [ zlib ];
doCheck = true;
meta = with stdenv.lib; {
license = licenses.epl10;
homepage = https://projects.coin-or.org/Clp;
description = "An open-source linear programming solver written in C++";
platforms = platforms.darwin ++ [ "x86_64-linux" ];
maintainers = [ maintainers.vbgl ];
};
}