mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 15:27:20 +03:00
bctoolbox: init at 0.2.0
This commit is contained in:
parent
bcd3dcfc2b
commit
308f85a42e
21
pkgs/development/libraries/bctoolbox/default.nix
Normal file
21
pkgs/development/libraries/bctoolbox/default.nix
Normal file
@ -0,0 +1,21 @@
|
||||
{stdenv, fetchFromGitHub, cmake, mbedtls, bcunit, srtp}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${baseName}-${version}";
|
||||
baseName = "bctoolbox";
|
||||
version = "0.2.0";
|
||||
buildInputs = [cmake mbedtls bcunit srtp];
|
||||
src = fetchFromGitHub {
|
||||
owner = "BelledonneCommunications";
|
||||
repo = "${baseName}";
|
||||
rev = "${version}";
|
||||
sha256 = "09mjqdfjxy4jy1z68b2i99hgkbnhhk7vnbfhj9sdpd1p3jk2ha33";
|
||||
};
|
||||
|
||||
meta = {
|
||||
inherit version;
|
||||
description = ''Utilities library for Linphone'';
|
||||
license = stdenv.lib.licenses.gpl2Plus ;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
@ -6935,6 +6935,10 @@ in
|
||||
|
||||
babl = callPackage ../development/libraries/babl { };
|
||||
|
||||
bctoolbox = callPackage ../development/libraries/bctoolbox {
|
||||
mbedtls = mbedtls_1_3;
|
||||
};
|
||||
|
||||
beecrypt = callPackage ../development/libraries/beecrypt { };
|
||||
|
||||
beignet = callPackage ../development/libraries/beignet {
|
||||
|
Loading…
Reference in New Issue
Block a user