2021-01-21 17:00:13 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake }:
|
2018-08-12 21:30:53 +00:00
|
|
|
|
2021-01-03 10:07:52 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 21:52:01 +00:00
|
|
|
pname = "codec2";
|
2021-10-20 14:59:22 +00:00
|
|
|
version = "1.0.1";
|
2018-08-12 21:30:53 +00:00
|
|
|
|
2019-11-17 12:27:48 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "drowe67";
|
|
|
|
repo = "codec2";
|
|
|
|
rev = "v${version}";
|
2021-10-20 14:59:22 +00:00
|
|
|
sha256 = "05xjsb67dzwncl2rnhg6fqih8krf38b7vmvzlsb7y9g6d1b085wg";
|
2018-08-12 21:30:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2021-10-20 14:59:22 +00:00
|
|
|
# Swap keyword order to satisfy SWIG parser
|
|
|
|
postFixup = ''
|
|
|
|
sed -r -i 's/(\<_Complex)(\s+)(float|double)/\3\2\1/' $out/include/$pname/freedv_api.h
|
|
|
|
'';
|
|
|
|
|
2021-01-21 17:00:13 +00:00
|
|
|
meta = with lib; {
|
2018-08-12 21:30:53 +00:00
|
|
|
description = "Speech codec designed for communications quality speech at low data rates";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "http://www.rowetel.com/blog/?page_id=452";
|
2021-02-01 12:35:18 +00:00
|
|
|
license = licenses.lgpl21Only;
|
2021-01-03 10:07:52 +00:00
|
|
|
platforms = platforms.unix;
|
2018-08-12 21:30:53 +00:00
|
|
|
maintainers = with maintainers; [ markuskowa ];
|
|
|
|
};
|
|
|
|
}
|