forked from mirrors/nixpkgs
Merge pull request #100688 from henrikolsson/master
noise-suppression-for-voice: init at 2020-10-10
This commit is contained in:
commit
d699505277
|
@ -3443,6 +3443,12 @@
|
|||
githubId = 2405974;
|
||||
name = "Sébastian Méric de Bellefon";
|
||||
};
|
||||
henrikolsson = {
|
||||
email = "henrik@fixme.se";
|
||||
github = "henrikolsson";
|
||||
githubId = 982322;
|
||||
name = "Henrik Olsson";
|
||||
};
|
||||
henrytill = {
|
||||
email = "henrytill@gmail.com";
|
||||
github = "henrytill";
|
||||
|
|
|
@ -0,0 +1,26 @@
|
|||
{ stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "noise-suppression-for-voice-unstable";
|
||||
version = "2020-10-10";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "werman";
|
||||
repo = "noise-suppression-for-voice";
|
||||
rev = "15bac8f34018184d7d4de1b3b2ba98c433705f6c";
|
||||
sha256 = "11pwisbcks7g0mdgcrrv49v3ci1l6m26bbb7f67xz4pr1hai5dwc";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A real-time noise suppression plugin for voice";
|
||||
longDescription = ''
|
||||
The plugin is meant to suppress a wide range of noise origins (from original paper): computer fans, office, crowd, airplane, car, train, construction.
|
||||
'';
|
||||
homepage = "https://github.com/werman/noise-suppression-for-voice";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.henrikolsson ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -14663,6 +14663,8 @@ in
|
|||
|
||||
non = callPackage ../applications/audio/non { };
|
||||
|
||||
noise-suppression-for-voice = callPackage ../development/libraries/noise-suppression-for-voice { };
|
||||
|
||||
ntl = callPackage ../development/libraries/ntl { };
|
||||
|
||||
nspr = callPackage ../development/libraries/nspr {
|
||||
|
|
Loading…
Reference in a new issue