mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-02 18:42:15 +00:00
23 lines
617 B
Nix
23 lines
617 B
Nix
{ stdenv, fetchurl, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.17.1";
|
|
name = "clp-${version}";
|
|
src = fetchurl {
|
|
url = "https://www.coin-or.org/download/source/Clp/Clp-${version}.tgz";
|
|
sha256 = "1wdg820g3iikf9344ijwsc8sy6c0m6im42bzzizm6rlmkvnmxhk9";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|