nixpkgs/pkgs/development/libraries/CoinMP/default.nix
R. RyanTM 61aaab7c62 CoinMP: 1.8.3 -> 1.8.4
Semi-automatic update generated by
https://github.com/ryantm/nixpkgs-update tools. This update was made
based on information from
https://repology.org/metapackage/coinmp/versions
2019-03-03 09:17:44 +01:00

21 lines
538 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "CoinMP-${version}";
version = "1.8.4";
src = fetchurl {
url = "https://www.coin-or.org/download/source/CoinMP/${name}.tgz";
sha256 = "13d3j1sdcjzpijp4qks3n0zibk649ac3hhv88hkk8ffxrc6gnn9l";
};
hardeningDisable = [ "format" ];
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.unix;
license = licenses.epl10;
};
}