Merge pull request #108303 from siraben/codec2-darwin
codec2: enable build on unix
This commit is contained in:
commit
4d0e996b71
@ -1,11 +1,8 @@
|
|||||||
{ stdenv, fetchFromGitHub, cmake } :
|
{ stdenv, fetchFromGitHub, cmake }:
|
||||||
|
|
||||||
let
|
stdenv.mkDerivation rec {
|
||||||
version = "0.9.2";
|
|
||||||
|
|
||||||
in stdenv.mkDerivation {
|
|
||||||
pname = "codec2";
|
pname = "codec2";
|
||||||
inherit version;
|
version = "0.9.2";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "drowe67";
|
owner = "drowe67";
|
||||||
@ -14,15 +11,13 @@ in stdenv.mkDerivation {
|
|||||||
sha256 = "1jpvr7bra8srz8jvnlbmhf8andbaavq5v01qjnp2f61za93rzwba";
|
sha256 = "1jpvr7bra8srz8jvnlbmhf8andbaavq5v01qjnp2f61za93rzwba";
|
||||||
};
|
};
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake ];
|
nativeBuildInputs = [ cmake ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Speech codec designed for communications quality speech at low data rates";
|
description = "Speech codec designed for communications quality speech at low data rates";
|
||||||
homepage = "http://www.rowetel.com/blog/?page_id=452";
|
homepage = "http://www.rowetel.com/blog/?page_id=452";
|
||||||
license = licenses.lgpl21;
|
license = licenses.lgpl21;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
maintainers = with maintainers; [ markuskowa ];
|
maintainers = with maintainers; [ markuskowa ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user