mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-17 23:36:17 +01:00
46420bbaa3
treewide replacement of stdenv.mkDerivation rec { name = "*-${version}"; version = "*"; to pname
22 lines
607 B
Nix
22 lines
607 B
Nix
{ stdenv, fetchurl, zlib }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "1.17.2";
|
|
pname = "clp";
|
|
src = fetchurl {
|
|
url = "https://www.coin-or.org/download/source/Clp/Clp-${version}.tgz";
|
|
sha256 = "1fkmgpn0zaraymi6s3isrrscgjxggcs2yjrx7jfy4hb1jacx71zz";
|
|
};
|
|
|
|
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 ];
|
|
};
|
|
}
|