nixpkgs/pkgs/development/libraries/CoinMP/default.nix

21 lines
539 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "CoinMP-${version}";
2017-03-10 22:48:29 +00:00
version = "1.8.3";
src = fetchurl {
url = "https://www.coin-or.org/download/source/CoinMP/${name}.tgz";
2017-03-10 22:48:29 +00:00
sha256 = "1xr2iwbbhm6l9hwiry5c10pz46xfih8bvzrzwp0nkzf76vdnb9m1";
};
hardeningDisable = [ "format" ];
2015-12-23 01:59:47 +00:00
meta = with stdenv.lib; {
homepage = https://projects.coin-or.org/CoinMP/;
description = "COIN-OR lightweight API for COIN-OR libraries CLP, CBC, and CGL";
platforms = platforms.linux;
license = licenses.epl10;
};
}