Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 38 lines 762 B view raw
1{ 2 lib, 3 stdenv, 4 fetchFromGitHub, 5 cmake, 6 qtbase, 7 wrapQtAppsHook, 8}: 9 10stdenv.mkDerivation rec { 11 pname = "linvstmanager"; 12 version = "1.1.1"; 13 14 src = fetchFromGitHub { 15 owner = "Goli4thus"; 16 repo = "linvstmanager"; 17 rev = "v${version}"; 18 hash = "sha256-K6eugimMy/MZgHYkg+zfF8DDqUuqqoeymxHtcFGu2Uk="; 19 }; 20 21 nativeBuildInputs = [ 22 cmake 23 wrapQtAppsHook 24 ]; 25 26 buildInputs = [ 27 qtbase 28 ]; 29 30 meta = with lib; { 31 description = "Graphical companion application for various bridges like LinVst, etc"; 32 mainProgram = "linvstmanager"; 33 homepage = "https://github.com/Goli4thus/linvstmanager"; 34 license = with licenses; [ gpl3 ]; 35 platforms = platforms.linux; 36 maintainers = [ maintainers.GabrielDougherty ]; 37 }; 38}