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

This commit is contained in:
Doron Behar
2026-01-18 11:42:09 +00:00
committed by GitHub
2 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -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
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;
};
}
})