fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
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 hardeningDisable = [ "format" ];
13
14 meta = with 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.unix;
18 license = licenses.epl10;
19 };
20}