Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at 23.11-beta 22 lines 574 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "CoinMP"; 5 version = "1.8.4"; 6 7 src = fetchurl { 8 url = "https://www.coin-or.org/download/source/CoinMP/${pname}-${version}.tgz"; 9 sha256 = "13d3j1sdcjzpijp4qks3n0zibk649ac3hhv88hkk8ffxrc6gnn9l"; 10 }; 11 12 enableParallelBuilding = true; 13 14 hardeningDisable = [ "format" ]; 15 16 meta = with lib; { 17 homepage = "https://projects.coin-or.org/CoinMP/"; 18 description = "COIN-OR lightweight API for COIN-OR libraries CLP, CBC, and CGL"; 19 platforms = platforms.unix; 20 license = licenses.epl10; 21 }; 22}