rnnoise: 0.0.1 (2017-10-10) -> 2019-04-24
This commit is contained in:
parent
e3df3a169d
commit
b2492bc444
@ -1,21 +1,25 @@
|
|||||||
{ stdenv, lib, fetchFromGitHub, autoreconfHook }:
|
{ stdenv, lib, fetchFromGitHub, autoreconfHook }:
|
||||||
|
|
||||||
stdenv.mkDerivation (rec {
|
stdenv.mkDerivation (rec {
|
||||||
name = "rnnoise-${version}";
|
pname = "rnnoise";
|
||||||
version = "0.0.1";
|
version = "2019-04-24";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "xiph";
|
owner = "xiph";
|
||||||
repo = "rnnoise";
|
repo = "rnnoise";
|
||||||
rev = "91ef401f4c3536c6de999ac609262691ec888c4c";
|
rev = "9acc1e5a633e0961a5895a73204df24744f199b6";
|
||||||
sha256 = "1h2ibg67gfcwnpvkq1rx0sngf9lk9j8pqsmsmmk5hclvrr2lp3yb";
|
sha256 = "17xip4z0skpzas7wrdyi87j46mbz9jncpj554m8654bqpkxis0pr";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ autoreconfHook ];
|
nativeBuildInputs = [ autoreconfHook ];
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
install -Dt $out/bin examples/.libs/rnnoise_demo
|
||||||
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = https://people.xiph.org/~jm/demo/rnnoise/;
|
homepage = https://people.xiph.org/~jm/demo/rnnoise/;
|
||||||
description = "Recurrent neural network for audio noise reduction.";
|
description = "Recurrent neural network for audio noise reduction";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = [ maintainers.nh2 ];
|
maintainers = [ maintainers.nh2 ];
|
||||||
platforms = platforms.all;
|
platforms = platforms.all;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user