lol
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 22.05-pre 22 lines 605 B view raw
1{ lib, stdenv, fetchurl, zlib }: 2 3stdenv.mkDerivation rec { 4 version = "1.17.6"; 5 pname = "clp"; 6 src = fetchurl { 7 url = "https://www.coin-or.org/download/source/Clp/Clp-${version}.tgz"; 8 sha256 = "0ap1f0lxppa6pnbc4bg7ih7a96avwaki482nig8w5fr3vg9wvkzr"; 9 }; 10 11 propagatedBuildInputs = [ zlib ]; 12 13 doCheck = true; 14 15 meta = with lib; { 16 license = licenses.epl10; 17 homepage = "https://github.com/coin-or/Clp"; 18 description = "An open-source linear programming solver written in C++"; 19 platforms = platforms.darwin ++ [ "x86_64-linux" ]; 20 maintainers = [ maintainers.vbgl ]; 21 }; 22}