lv2lint: modernize, move to by-name/

This commit is contained in:
pancaek
2025-10-18 05:26:05 -07:00
parent 6a2510770b
commit eaa8f44da9
2 changed files with 5 additions and 7 deletions

View File

@@ -20,7 +20,7 @@ stdenv.mkDerivation (finalAttrs: {
domain = "open-music-kontrollers.ch"; domain = "open-music-kontrollers.ch";
owner = "~hp"; owner = "~hp";
repo = "lv2lint"; repo = "lv2lint";
rev = finalAttrs.version; tag = finalAttrs.version;
hash = "sha256-NkzbKteLZ+P+Py+CMOYYipvu6psDslWnM1MAV1XB0TM="; hash = "sha256-NkzbKteLZ+P+Py+CMOYYipvu6psDslWnM1MAV1XB0TM=";
}; };
@@ -44,12 +44,12 @@ stdenv.mkDerivation (finalAttrs: {
(lib.mesonEnable "x11-tests" true) (lib.mesonEnable "x11-tests" true)
]; ];
meta = with lib; { meta = {
description = "Check whether a given LV2 plugin is up to the specification"; description = "Check whether a given LV2 plugin is up to the specification";
homepage = "https://git.open-music-kontrollers.ch/~hp/lv2lint"; homepage = "https://git.open-music-kontrollers.ch/~hp/lv2lint";
license = licenses.artistic2; license = lib.licenses.artistic2;
maintainers = [ maintainers.magnetophon ]; maintainers = with lib.maintainers; [ magnetophon ];
platforms = platforms.linux; platforms = lib.platforms.linux;
mainProgram = "lv2lint"; mainProgram = "lv2lint";
}; };
}) })

View File

@@ -11793,8 +11793,6 @@ with pkgs;
steamSupport = false; steamSupport = false;
}; };
lv2lint = callPackage ../applications/audio/lv2lint/default.nix { };
lxi-tools = callPackage ../tools/networking/lxi-tools { }; lxi-tools = callPackage ../tools/networking/lxi-tools { };
lxi-tools-gui = callPackage ../tools/networking/lxi-tools { withGui = true; }; lxi-tools-gui = callPackage ../tools/networking/lxi-tools { withGui = true; };