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

29 lines
672 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake } :
2018-08-12 23:30:53 +02:00
let
version = "0.9.2";
2018-08-12 23:30:53 +02:00
in stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "codec2";
inherit version;
2018-08-12 23:30:53 +02:00
src = fetchFromGitHub {
owner = "drowe67";
repo = "codec2";
rev = "v${version}";
sha256 = "1jpvr7bra8srz8jvnlbmhf8andbaavq5v01qjnp2f61za93rzwba";
2018-08-12 23:30:53 +02:00
};
enableParallelBuilding = true;
nativeBuildInputs = [ cmake ];
meta = with stdenv.lib; {
description = "Speech codec designed for communications quality speech at low data rates";
homepage = "http://www.rowetel.com/blog/?page_id=452";
2018-08-12 23:30:53 +02:00
license = licenses.lgpl21;
platforms = platforms.linux;
maintainers = with maintainers; [ markuskowa ];
};
}