Skip to content

Commit

Permalink
Merge pull request NixOS#29898 from vbgl/clp-1.16.11
Browse files Browse the repository at this point in the history
clp: init at 1.16.11
  • Loading branch information
Mic92 committed Sep 28, 2017
2 parents c3af121 + b831b24 commit 5baf3b4
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
24 changes: 24 additions & 0 deletions pkgs/applications/science/math/clp/default.nix
Original file line number Diff line number Diff line change
@@ -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 ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 5baf3b4

Please sign in to comment.