Skip to content

Commit

Permalink
noisetorch: 0.12.0 -> 0.12.2, remove meta.{insecure,knownVulnerabilit…
Browse files Browse the repository at this point in the history
…ies}

those only affected the prebuild binaries which we are not using
  • Loading branch information
SuperSandro2000 committed Feb 19, 2023
1 parent 5de1815 commit 2a1b1ea
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions pkgs/applications/audio/noisetorch/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@

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

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

vendorHash = null;

doCheck = false;

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

subPackages = [ "." ];

Expand All @@ -32,9 +32,6 @@ buildGoModule rec {
'';

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;
Expand Down

0 comments on commit 2a1b1ea

Please sign in to comment.