forked from mirrors/nixpkgs
pipecontrol: init at 0.2.2 (#164808)
Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch>
This commit is contained in:
parent
3fe298e6b5
commit
b130f233d6
50
pkgs/applications/audio/pipecontrol/default.nix
Normal file
50
pkgs/applications/audio/pipecontrol/default.nix
Normal file
|
@ -0,0 +1,50 @@
|
|||
{ lib
|
||||
, stdenv
|
||||
, fetchFromGitHub
|
||||
, pipewire
|
||||
, cmake
|
||||
, extra-cmake-modules
|
||||
, gnumake
|
||||
, wrapQtAppsHook
|
||||
, qtbase
|
||||
, qttools
|
||||
, kirigami2
|
||||
, kcoreaddons
|
||||
, ki18n
|
||||
, qtquickcontrols2
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "pipecontrol";
|
||||
version = "0.2.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "portaloffreedom";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-BeubRDx82MQX1gB7GnGJlQ2FyYX1S83C3gqPZgIjgoM=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
extra-cmake-modules
|
||||
wrapQtAppsHook
|
||||
qttools
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
pipewire
|
||||
qtbase
|
||||
kirigami2
|
||||
kcoreaddons
|
||||
ki18n
|
||||
qtquickcontrols2
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Pipewire control GUI program in Qt (Kirigami2)";
|
||||
homepage = "https://github.com/portaloffreedom/pipecontrol";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ tilcreator ];
|
||||
};
|
||||
}
|
|
@ -8856,6 +8856,8 @@ with pkgs;
|
|||
|
||||
pipe-rename = callPackage ../tools/misc/pipe-rename { };
|
||||
|
||||
pipecontrol = libsForQt5.callPackage ../applications/audio/pipecontrol { };
|
||||
|
||||
pipectl = callPackage ../tools/misc/pipectl { };
|
||||
|
||||
pitivi = callPackage ../applications/video/pitivi { };
|
||||
|
|
Loading…
Reference in a new issue