1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 19:51:17 +00:00

Merge pull request #29898 from vbgl/clp-1.16.11

clp: init at 1.16.11
This commit is contained in:
Jörg Thalheim 2017-09-28 23:19:41 +01:00 committed by GitHub
commit 5baf3b40a8
2 changed files with 26 additions and 0 deletions

View file

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

View file

@ -13834,6 +13834,8 @@ with pkgs;
cloud-print-connector = callPackage ../servers/cloud-print-connector { };
clp = callPackage ../applications/science/math/clp { };
cmatrix = callPackage ../applications/misc/cmatrix { };
cmus = callPackage ../applications/audio/cmus {