nixpkgs/pkgs/development/libraries/bcg729/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
915 B
Nix
Raw Normal View History

{ lib, stdenv
, fetchFromGitLab
2019-11-24 13:34:17 +00:00
, cmake
}:
stdenv.mkDerivation rec {
pname = "bcg729";
version = "1.1.1";
2019-11-24 13:34:17 +00:00
src = fetchFromGitLab {
domain = "gitlab.linphone.org";
owner = "public";
group = "BC";
2019-11-24 13:34:17 +00:00
repo = pname;
rev = version;
sha256 = "1hal6b3w6f8y5r1wa0xzj8sj2jjndypaxyw62q50p63garp2h739";
2019-11-24 13:34:17 +00:00
};
nativeBuildInputs = [ cmake ];
2022-05-16 07:59:18 +00:00
postPatch = ''
substituteInPlace CMakeLists.txt \
--replace '\$'{exec_prefix}/'$'{CMAKE_INSTALL_LIBDIR} '$'{CMAKE_INSTALL_FULL_LIBDIR}
'';
meta = with lib; {
2019-11-24 13:34:17 +00:00
description = "Opensource implementation of both encoder and decoder of the ITU G729 Annex A/B speech codec";
homepage = "https://linphone.org/technical-corner/bcg729";
changelog = "https://gitlab.linphone.org/BC/public/bcg729/raw/${version}/NEWS";
license = licenses.gpl3Plus;
2019-11-24 13:34:17 +00:00
maintainers = with maintainers; [ c0bw3b ];
platforms = platforms.all;
};
}