bctoolbox: set meta.homepage
+ move cmake and bcunit to nativeBuildInputs + use current mbedtls
This commit is contained in:
parent
576a82d6c2
commit
b1a24b2118
@ -1,19 +1,23 @@
|
|||||||
{stdenv, fetchFromGitHub, cmake, mbedtls, bcunit, srtp}:
|
{ stdenv, fetchFromGitHub, cmake, bcunit, mbedtls }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "${baseName}-${version}";
|
pname = "bctoolbox";
|
||||||
baseName = "bctoolbox";
|
|
||||||
version = "0.6.0";
|
version = "0.6.0";
|
||||||
buildInputs = [cmake mbedtls bcunit srtp];
|
|
||||||
|
nativeBuildInputs = [ cmake bcunit ];
|
||||||
|
buildInputs = [ mbedtls ];
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "BelledonneCommunications";
|
owner = "BelledonneCommunications";
|
||||||
repo = baseName;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1cxx243wyzkd4xnvpyqf97n0rjhfckpvw1vhwnbwshq3q6fra909";
|
sha256 = "1cxx243wyzkd4xnvpyqf97n0rjhfckpvw1vhwnbwshq3q6fra909";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
inherit version;
|
inherit version;
|
||||||
description = ''Utilities library for Linphone'';
|
description = "Utilities library for Linphone";
|
||||||
|
homepage = "https://github.com/BelledonneCommunications/bctoolbox";
|
||||||
license = stdenv.lib.licenses.gpl2Plus ;
|
license = stdenv.lib.licenses.gpl2Plus ;
|
||||||
maintainers = [stdenv.lib.maintainers.raskin];
|
maintainers = [stdenv.lib.maintainers.raskin];
|
||||||
platforms = stdenv.lib.platforms.linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
|
@ -10697,9 +10697,7 @@ in
|
|||||||
|
|
||||||
bamf = callPackage ../development/libraries/bamf { };
|
bamf = callPackage ../development/libraries/bamf { };
|
||||||
|
|
||||||
bctoolbox = callPackage ../development/libraries/bctoolbox {
|
bctoolbox = callPackage ../development/libraries/bctoolbox { };
|
||||||
mbedtls = mbedtls_1_3;
|
|
||||||
};
|
|
||||||
|
|
||||||
beecrypt = callPackage ../development/libraries/beecrypt { };
|
beecrypt = callPackage ../development/libraries/beecrypt { };
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user