libreoffice: 5.0.0.5 -> 5.0.1.2, refactor
I've extracted some of libraries and made expression simpler. (cherry picked from commit 66e6f99d40350a4b2a235913a1fa77d88b1a44a6) Signed-off-by: Domen Kožar <domen@dev.si>
This commit is contained in:
18
pkgs/development/libraries/CoinMP/default.nix
Normal file
18
pkgs/development/libraries/CoinMP/default.nix
Normal file
@@ -0,0 +1,18 @@
|
||||
{ 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;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user