Unverified Commit 3a6d2f47 authored by Doron Behar's avatar Doron Behar Committed by GitHub
Browse files

noise-repellent: 0.2.3 -> 0.2.5 (#480161)

parents b4aae762 29da5850
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -10,13 +10,13 @@

stdenv.mkDerivation rec {
  pname = "libspecbleach";
  version = "0.1.6";
  version = "0.2.0";

  src = fetchFromGitHub {
    owner = "lucianodato";
    repo = "libspecbleach";
    rev = "v${version}";
    sha256 = "sha256-Tw5nrGVAeoiMH00efJwcU+QLmKDZZTXHQPSV9x789TM=";
    sha256 = "sha256-s8eHryJfLz63m08O7l3r2iXOAgFqiuVTEcD774C3iXE=";
  };

  nativeBuildInputs = [
+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;
  };
}
})