From 29da58509006d24906690e47ff51f92c048de5e4 Mon Sep 17 00:00:00 2001 From: Bart Brouns Date: Wed, 14 Jan 2026 01:48:08 +0100 Subject: [PATCH] noise-repellent: 0.2.3 -> 0.2.5 --- pkgs/by-name/no/noise-repellent/package.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/pkgs/by-name/no/noise-repellent/package.nix b/pkgs/by-name/no/noise-repellent/package.nix index 55e595763d2f..08753c0f3cca 100644 --- a/pkgs/by-name/no/noise-repellent/package.nix +++ b/pkgs/by-name/no/noise-repellent/package.nix @@ -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; }; -} +})