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