mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
60ad36ba67
I've extracted some of libraries and made expression simpler. (cherry picked from commit 66e6f99d40350a4b2a235913a1fa77d88b1a44a6) Signed-off-by: Domen Kožar <domen@dev.si>
19 lines
502 B
Nix
19 lines
502 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "CoinMP-${version}";
|
|
version = "1.7.6";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.coin-or.org/download/source/CoinMP/${name}.tgz";
|
|
sha256 = "0gqi2vqkg35gazzzv8asnhihchnbjcd6bzjfzqhmj7wy1dw9iiw6";
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|