noise-repellent: 0.2.3 -> 0.2.5

This commit is contained in:
Bart Brouns
2026-01-17 21:22:45 +01:00
parent 8fe896baa6
commit 29da585090
+6 -5
View File
@@ -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;
};
}
})