rnnoise: Init at 0.0.1
Imported from
16d7867eef/repos/clefru/pkgs/rnnoise/default.nix
This commit is contained in:
parent
0cad3f6734
commit
e47df96d3c
23
pkgs/development/libraries/rnnoise/default.nix
Normal file
23
pkgs/development/libraries/rnnoise/default.nix
Normal file
@ -0,0 +1,23 @@
|
||||
{ stdenv, lib, fetchFromGitHub, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation (rec {
|
||||
name = "rnnoise-${version}";
|
||||
version = "0.0.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "xiph";
|
||||
repo = "rnnoise";
|
||||
rev = "91ef401f4c3536c6de999ac609262691ec888c4c";
|
||||
sha256 = "1h2ibg67gfcwnpvkq1rx0sngf9lk9j8pqsmsmmk5hclvrr2lp3yb";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = https://people.xiph.org/~jm/demo/rnnoise/;
|
||||
description = "Recurrent neural network for audio noise reduction.";
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.nh2 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
})
|
@ -6000,6 +6000,8 @@ in
|
||||
|
||||
rng-tools = callPackage ../tools/security/rng-tools { };
|
||||
|
||||
rnnoise = callPackage ../development/libraries/rnnoise { };
|
||||
|
||||
rnv = callPackage ../tools/text/xml/rnv { };
|
||||
|
||||
rounded-mgenplus = callPackage ../data/fonts/rounded-mgenplus { };
|
||||
|
Loading…
Reference in New Issue
Block a user