melmatcheq-lv2: 0.1 -> 0.1-unstable-2025-01-30

This commit is contained in:
Bart Brouns
2025-11-08 19:18:51 +01:00
parent c6d12f5137
commit a1307f4592

View File

@@ -9,15 +9,15 @@
pkg-config, pkg-config,
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation {
pname = "MelMatchEQ.lv2"; pname = "MelMatchEQ.lv2";
version = "0.1"; version = "0.1-unstable-2025-01-30";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "brummer10"; owner = "brummer10";
repo = "MelMatchEQ.lv2"; repo = "MelMatchEQ.lv2";
rev = "v${version}"; rev = "bee24593209d5c53fdafa62cb43aeeab6c5e880f";
sha256 = "1s805jgb9msxfq9047s7pxrngizb00w8sm4z94iii80ba65rd20x"; hash = "sha256-eceY79s1X0gv0SsC4jJsFh7tq3VxQhcY9/bfJqYUxmk=";
}; };
nativeBuildInputs = [ pkg-config ]; nativeBuildInputs = [ pkg-config ];
@@ -30,11 +30,11 @@ stdenv.mkDerivation rec {
installFlags = [ "INSTALL_DIR=$(out)/lib/lv2" ]; installFlags = [ "INSTALL_DIR=$(out)/lib/lv2" ];
meta = with lib; { meta = {
homepage = "https://github.com/brummer10/MelMatchEQ.lv2"; homepage = "https://github.com/brummer10/MelMatchEQ.lv2";
description = "Profiling EQ using a 26 step Mel Frequency Band"; description = "Profiling EQ using a 26 step Mel Frequency Band";
maintainers = with maintainers; [ magnetophon ]; maintainers = with lib.maintainers; [ magnetophon ];
license = licenses.gpl2Plus; license = lib.licenses.gpl2Plus;
platforms = platforms.linux; platforms = lib.platforms.linux;
}; };
} }