mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
bctoolbox: set meta.homepage
+ move cmake and bcunit to nativeBuildInputs + use current mbedtls
This commit is contained in:
parent
576a82d6c2
commit
b1a24b2118
2 changed files with 11 additions and 9 deletions
|
@ -1,19 +1,23 @@
|
|||
{stdenv, fetchFromGitHub, cmake, mbedtls, bcunit, srtp}:
|
||||
{ stdenv, fetchFromGitHub, cmake, bcunit, mbedtls }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${baseName}-${version}";
|
||||
baseName = "bctoolbox";
|
||||
pname = "bctoolbox";
|
||||
version = "0.6.0";
|
||||
buildInputs = [cmake mbedtls bcunit srtp];
|
||||
|
||||
nativeBuildInputs = [ cmake bcunit ];
|
||||
buildInputs = [ mbedtls ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "BelledonneCommunications";
|
||||
repo = baseName;
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "1cxx243wyzkd4xnvpyqf97n0rjhfckpvw1vhwnbwshq3q6fra909";
|
||||
};
|
||||
|
||||
meta = {
|
||||
inherit version;
|
||||
description = ''Utilities library for Linphone'';
|
||||
description = "Utilities library for Linphone";
|
||||
homepage = "https://github.com/BelledonneCommunications/bctoolbox";
|
||||
license = stdenv.lib.licenses.gpl2Plus ;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
|
|
|
@ -10697,9 +10697,7 @@ in
|
|||
|
||||
bamf = callPackage ../development/libraries/bamf { };
|
||||
|
||||
bctoolbox = callPackage ../development/libraries/bctoolbox {
|
||||
mbedtls = mbedtls_1_3;
|
||||
};
|
||||
bctoolbox = callPackage ../development/libraries/bctoolbox { };
|
||||
|
||||
beecrypt = callPackage ../development/libraries/beecrypt { };
|
||||
|
||||
|
|
Loading…
Reference in a new issue