linvstmanager: move to by-name/

This commit is contained in:
pancaek
2025-10-21 20:15:51 -07:00
parent f4be23dfcc
commit 153be6ef09
2 changed files with 10 additions and 13 deletions
@@ -3,28 +3,27 @@
stdenv,
fetchFromGitHub,
cmake,
qtbase,
wrapQtAppsHook,
qt5,
}:
stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "linvstmanager";
version = "1.1.1";
src = fetchFromGitHub {
owner = "Goli4thus";
repo = "linvstmanager";
rev = "v${version}";
rev = "v${finalAttrs.version}";
hash = "sha256-K6eugimMy/MZgHYkg+zfF8DDqUuqqoeymxHtcFGu2Uk=";
};
nativeBuildInputs = [
cmake
wrapQtAppsHook
qt5.wrapQtAppsHook
];
buildInputs = [
qtbase
qt5.qtbase
];
postPatch = ''
@@ -32,12 +31,12 @@ stdenv.mkDerivation rec {
--replace-fail "cmake_minimum_required(VERSION 3.0.0)" "cmake_minimum_required(VERSION 3.10)"
'';
meta = with lib; {
meta = {
description = "Graphical companion application for various bridges like LinVst, etc";
mainProgram = "linvstmanager";
homepage = "https://github.com/Goli4thus/linvstmanager";
license = with licenses; [ gpl3 ];
platforms = platforms.linux;
maintainers = [ maintainers.GabrielDougherty ];
license = with lib.licenses; [ gpl3 ];
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ GabrielDougherty ];
};
}
})
-2
View File
@@ -11271,8 +11271,6 @@ with pkgs;
linssid = libsForQt5.callPackage ../applications/networking/linssid { };
linvstmanager = qt5.callPackage ../applications/audio/linvstmanager { };
deadd-notification-center = haskell.lib.compose.justStaticExecutables (
haskellPackages.callPackage ../applications/misc/deadd-notification-center { }
);