nixpkgs/pkgs/applications/audio/noisetorch/default.nix

47 lines
1.2 KiB
Nix
Raw Normal View History

{ lib, buildGoModule, fetchFromGitHub, rnnoise-plugin }:
2020-07-19 16:34:54 +01:00
buildGoModule rec {
pname = "NoiseTorch";
2020-12-17 15:41:37 +00:00
version = "0.9.0";
2020-07-19 16:34:54 +01:00
src = fetchFromGitHub {
owner = "lawl";
repo = "NoiseTorch";
rev = version;
2020-12-17 15:41:37 +00:00
sha256 = "1a4g112h83m55pga8kq2a1wzxpycj59v4bygyjfyi1s09q1y97qg";
2020-07-19 16:34:54 +01:00
};
2020-12-17 15:41:37 +00:00
patches = [ ./version.patch ];
2020-07-19 16:34:54 +01:00
vendorSha256 = null;
doCheck = false;
2020-07-19 16:34:54 +01:00
subPackages = [ "." ];
buildInputs = [ rnnoise-plugin ];
2020-12-17 15:41:37 +00:00
postPatch = "substituteInPlace main.go --replace 'librnnoise_ladspa/bin/ladspa/librnnoise_ladspa.so' '$RNNOISE_LADSPA_PLUGIN'";
2020-07-19 16:34:54 +01:00
preBuild = ''
export RNNOISE_LADSPA_PLUGIN="${rnnoise-plugin}/lib/ladspa/librnnoise_ladspa.so";
go generate;
rm ./scripts/*
'';
postInstall = ''
mkdir -p $out/share/icons/hicolor/256x256/apps/
cp assets/icon/noisetorch.png $out/share/icons/hicolor/256x256/apps/
mkdir -p $out/share/applications/
cp assets/noisetorch.desktop $out/share/applications/
'';
meta = with lib; {
2020-07-19 16:34:54 +01:00
description = "Virtual microphone device with noise supression for PulseAudio";
homepage = "https://github.com/lawl/NoiseTorch";
license = licenses.gpl3Plus;
platforms = platforms.linux;
maintainers = with maintainers; [ panaeon ];
};
}