summary refs log blame commit diff
path: root/pkgs/applications/audio/noisetorch/default.nix
blob: 1015829709ebd06fddf5ec1e3a083a9aacec1194 (plain) (tree)
1
2
3
4
5
6
7
8
9
                                                          


                       
                     

                         
                         
                        


                                                                   

    

                      

                  
                                                                        
 
                        
 
                                           
 
               

                     



                   

                                                                                                

     
                    
                    

                                                                                                                     
                                                                                   
                                                          

                                
                                                    

    
{ lib, buildGoModule, fetchFromGitHub, copyDesktopItems }:

buildGoModule rec {
  pname = "NoiseTorch";
  version = "0.12.0";

  src = fetchFromGitHub {
    owner = "noisetorch";
    repo = "NoiseTorch";
    rev = "v${version}";
    sha256 = "sha256-A6cX1ck47/ZIn9cnV/Ow4CxVFfOX5J0K0Q+B70jCFdQ=";
    fetchSubmodules = true;
  };

  vendorSha256 = null;

  doCheck = false;

  ldflags = [ "-X main.version=${version}" "-X main.distribution=nix" ];

  subPackages = [ "." ];

  nativeBuildInputs = [ copyDesktopItems ];

  preBuild = ''
    make -C c/ladspa/
    go generate
    rm  ./scripts/*
  '';

  postInstall = ''
    install -D ./assets/icon/noisetorch.png $out/share/icons/hicolor/256x256/apps/noisetorch.png
    copyDesktopItems assets/noisetorch.desktop $out/share/applications/
  '';

  meta = with lib; {
    insecure = true;
    knownVulnerabilities =
      lib.optional (lib.versionOlder version "0.12") "https://github.com/noisetorch/NoiseTorch/releases/tag/v0.12.0";
    description = "Virtual microphone device with noise supression for PulseAudio";
    homepage = "https://github.com/noisetorch/NoiseTorch";
    license = licenses.gpl3Plus;
    platforms = platforms.linux;
    maintainers = with maintainers; [ panaeon lom ];
  };
}