Unverified Commit 44779f29 authored by Sandro Jäckel's avatar Sandro Jäckel Committed by GitHub
Browse files

Merge pull request #219919 from GabrielDougherty/pkg/linvstmanager

linvstmanager: init at 1.1.1
parents 7f917aeb c051db62
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -5256,6 +5256,12 @@
    githubId = 606000;
    name = "Gabriel Adomnicai";
  };
  GabrielDougherty = {
    email = "contact@gabrieldougherty.com";
    github = "GabrielDougherty";
    githubId = 10541219;
    name = "Gabriel Dougherty";
  };
  garaiza-93 = {
    email = "araizagustavo93@gmail.com";
    github = "garaiza-93";
+36 −0
Original line number Diff line number Diff line
{ lib
, stdenv
, fetchFromGitHub
, cmake
, qtbase
, wrapQtAppsHook
}:

stdenv.mkDerivation rec {
  pname = "linvstmanager";
  version = "1.1.1";

  src = fetchFromGitHub {
    owner = "Goli4thus";
    repo = "linvstmanager";
    rev = "v${version}";
    hash = "sha256-K6eugimMy/MZgHYkg+zfF8DDqUuqqoeymxHtcFGu2Uk=";
  };

  nativeBuildInputs = [
    cmake
    wrapQtAppsHook
  ];

  buildInputs = [
    qtbase
  ];

  meta = with lib; {
    description = "Graphical companion application for various bridges like LinVst, etc";
    homepage = "https://github.com/Goli4thus/linvstmanager";
    license = with licenses; [ gpl3 ];
    platforms = platforms.linux;
    maintainers = [ maintainers.GabrielDougherty ];
  };
}
+2 −0
Original line number Diff line number Diff line
@@ -30121,6 +30121,8 @@ with pkgs;
  linssid = libsForQt5.callPackage ../applications/networking/linssid { };
  linvstmanager = qt5.callPackage ../applications/audio/linvstmanager { };
  deadd-notification-center = callPackage ../applications/misc/deadd-notification-center { };
  lollypop = callPackage ../applications/audio/lollypop { };