mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-12 03:56:17 +03:00
clp: init at 1.16.11
This commit is contained in:
parent
378961ec6a
commit
b831b243ff
24
pkgs/applications/science/math/clp/default.nix
Normal file
24
pkgs/applications/science/math/clp/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
@ -13830,6 +13830,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 {
|
||||
|
Loading…
Reference in New Issue
Block a user