mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-19 02:44:17 +03:00
f3cfdc2f31
* jack-autoconnect: init at unstable-2021-02-01 Applied `nixfmt` against the added module. * Update pkgs/applications/audio/jack-autoconnect/default.nix Co-authored-by: Winter <winter@winter.cafe>
32 lines
886 B
Nix
32 lines
886 B
Nix
{ lib, mkDerivation, fetchFromGitHub, pkg-config, qmake, qtbase, libjack2 }:
|
|
mkDerivation rec {
|
|
pname = "jack_autoconnect";
|
|
|
|
# It does not have any versions (yet?)
|
|
version = "unstable-2021-02-01";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "kripton";
|
|
repo = pname;
|
|
rev = "fe0c8f69149e30979e067646f80b9d326341c02b";
|
|
sha256 = "sha256-imvNc498Q2W9RKmiOoNepSoJzIv2tGvFG6hx+seiifw=";
|
|
};
|
|
|
|
buildInputs = [ qtbase libjack2 ];
|
|
nativeBuildInputs = [ pkg-config qmake ];
|
|
|
|
installPhase = ''
|
|
mkdir -p -- "$out/bin"
|
|
cp -- jack_autoconnect "$out/bin"
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/kripton/jack_autoconnect";
|
|
description =
|
|
"Tiny application that reacts on port registrations by clients and connects them";
|
|
maintainers = with maintainers; [ unclechu ];
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.linux;
|
|
};
|
|
}
|