Commit 29da5850 authored by Bart Brouns's avatar Bart Brouns
Browse files

noise-repellent: 0.2.3 -> 0.2.5

parent 8fe896ba
Loading
Loading
Loading
Loading
+6 −5
Original line number Diff line number Diff line
@@ -10,15 +10,15 @@
  lv2,
}:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
  pname = "noise-repellent";
  version = "0.2.3";
  version = "0.2.5";

  src = fetchFromGitHub {
    owner = "lucianodato";
    repo = "noise-repellent";
    rev = "v${version}";
    sha256 = "sha256-d8csYC3z3vXdmN/G6mAK+H8ia0vOCsoUpoA3W8/OADc=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-GzOUcC161syjazazf+ywssWL0iH17eNhmhTBcjsuaQ0=";
  };

  mesonFlags = [
@@ -40,8 +40,9 @@ stdenv.mkDerivation rec {
  meta = {
    description = "LV2 plugin for broadband noise reduction";
    homepage = "https://github.com/lucianodato/noise-repellent";
    changelog = "https://github.com/lucianodato/noise-repellent/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.gpl3;
    maintainers = [ lib.maintainers.magnetophon ];
    platforms = lib.platforms.unix;
  };
}
})