mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 06:14:57 +01:00
57 lines
1.2 KiB
Nix
57 lines
1.2 KiB
Nix
{ lib
|
|
, stdenv
|
|
, cmake
|
|
, fetchFromGitHub
|
|
, freetype
|
|
, gtk3-x11
|
|
, pcre
|
|
, pkg-config
|
|
, webkitgtk
|
|
, xorg
|
|
, WebKit
|
|
, MetalKit
|
|
, CoreAudioKit
|
|
, simd
|
|
}:
|
|
stdenv.mkDerivation rec {
|
|
pname = "rnnoise-plugin";
|
|
version = "1.10";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "werman";
|
|
repo = "noise-suppression-for-voice";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-sfwHd5Fl2DIoGuPDjELrPp5KpApZJKzQikCJmCzhtY8=";
|
|
};
|
|
|
|
nativeBuildInputs = [ cmake pkg-config ];
|
|
|
|
patches = lib.optionals stdenv.isDarwin [
|
|
# Ubsan seems to be broken on aarch64-darwin, it produces linker errors similar to https://github.com/NixOS/nixpkgs/issues/140751
|
|
./disable-ubsan.patch
|
|
];
|
|
|
|
buildInputs =
|
|
[
|
|
freetype
|
|
gtk3-x11
|
|
pcre
|
|
xorg.libX11
|
|
xorg.libXrandr
|
|
] ++ lib.optionals stdenv.isLinux [
|
|
webkitgtk
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
WebKit
|
|
MetalKit
|
|
CoreAudioKit
|
|
simd
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "Real-time noise suppression plugin for voice based on Xiph's RNNoise";
|
|
homepage = "https://github.com/werman/noise-suppression-for-voice";
|
|
license = licenses.gpl3;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ panaeon henrikolsson sciencentistguy ];
|
|
};
|
|
}
|