nixpkgs/pkgs/development/libraries/CoinMP/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

21 lines
539 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "CoinMP-${version}";
version = "1.8.3";
src = fetchurl {
url = "https://www.coin-or.org/download/source/CoinMP/${name}.tgz";
sha256 = "1xr2iwbbhm6l9hwiry5c10pz46xfih8bvzrzwp0nkzf76vdnb9m1";
};
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.linux;
license = licenses.epl10;
};
}