nixpkgs/pkgs/development/libraries/bctoolbox/default.nix
c0bw3b b1a24b2118 bctoolbox: set meta.homepage
+ move cmake and bcunit to nativeBuildInputs

+ use current mbedtls
2019-11-23 18:15:13 +01:00

26 lines
676 B
Nix

{ stdenv, fetchFromGitHub, cmake, bcunit, mbedtls }:
stdenv.mkDerivation rec {
pname = "bctoolbox";
version = "0.6.0";
nativeBuildInputs = [ cmake bcunit ];
buildInputs = [ mbedtls ];
src = fetchFromGitHub {
owner = "BelledonneCommunications";
repo = pname;
rev = version;
sha256 = "1cxx243wyzkd4xnvpyqf97n0rjhfckpvw1vhwnbwshq3q6fra909";
};
meta = {
inherit version;
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;
};
}