nixpkgs/pkgs/applications/science/math/clp/default.nix
R. RyanTM 7653ff45cb clp: 1.17.2 -> 1.17.3
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-09-26 01:49:26 -07:00

23 lines
607 B
Nix

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