Skip to content

Commit c051db6

Browse files
linvstmanager: init at 1.1.1
1 parent d46a781 commit c051db6

3 files changed

Lines changed: 44 additions & 0 deletions

File tree

maintainers/maintainer-list.nix

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5256,6 +5256,12 @@
52565256
githubId = 606000;
52575257
name = "Gabriel Adomnicai";
52585258
};
5259+
GabrielDougherty = {
5260+
email = "contact@gabrieldougherty.com";
5261+
github = "GabrielDougherty";
5262+
githubId = 10541219;
5263+
name = "Gabriel Dougherty";
5264+
};
52595265
garaiza-93 = {
52605266
email = "araizagustavo93@gmail.com";
52615267
github = "garaiza-93";
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{ lib
2+
, stdenv
3+
, fetchFromGitHub
4+
, cmake
5+
, qtbase
6+
, wrapQtAppsHook
7+
}:
8+
9+
stdenv.mkDerivation rec {
10+
pname = "linvstmanager";
11+
version = "1.1.1";
12+
13+
src = fetchFromGitHub {
14+
owner = "Goli4thus";
15+
repo = "linvstmanager";
16+
rev = "v${version}";
17+
hash = "sha256-K6eugimMy/MZgHYkg+zfF8DDqUuqqoeymxHtcFGu2Uk=";
18+
};
19+
20+
nativeBuildInputs = [
21+
cmake
22+
wrapQtAppsHook
23+
];
24+
25+
buildInputs = [
26+
qtbase
27+
];
28+
29+
meta = with lib; {
30+
description = "Graphical companion application for various bridges like LinVst, etc";
31+
homepage = "https://github.com/Goli4thus/linvstmanager";
32+
license = with licenses; [ gpl3 ];
33+
platforms = platforms.linux;
34+
maintainers = [ maintainers.GabrielDougherty ];
35+
};
36+
}

pkgs/top-level/all-packages.nix

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30117,6 +30117,8 @@ with pkgs;
3011730117

3011830118
linssid = libsForQt5.callPackage ../applications/networking/linssid { };
3011930119

30120+
linvstmanager = qt5.callPackage ../applications/audio/linvstmanager { };
30121+
3012030122
deadd-notification-center = callPackage ../applications/misc/deadd-notification-center { };
3012130123

3012230124
lollypop = callPackage ../applications/audio/lollypop { };

0 commit comments

Comments
 (0)