3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/lxqt/pavucontrol-qt/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

49 lines
880 B
Nix
Raw Normal View History

{ lib
, mkDerivation
, fetchFromGitHub
, cmake
2021-01-17 02:21:50 +00:00
, pkg-config
, lxqt
, libpulseaudio
, pcre
, qtbase
, qttools
, qtx11extras
}:
2016-10-03 23:02:24 +01:00
mkDerivation rec {
2016-10-03 23:02:24 +01:00
pname = "pavucontrol-qt";
2021-11-05 17:35:02 +00:00
version = "1.0.0";
2016-10-03 23:02:24 +01:00
2017-11-02 02:00:22 +00:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 23:02:24 +01:00
repo = pname;
rev = version;
2021-11-05 17:35:02 +00:00
sha256 = "1n8h8flcm0na7n295lkjv49brj6razwml21wwrinwllw7s948qp0";
2016-10-03 23:02:24 +01:00
};
2017-02-19 12:16:38 +00:00
nativeBuildInputs = [
cmake
2021-01-17 02:21:50 +00:00
pkg-config
2017-02-19 12:16:38 +00:00
lxqt.lxqt-build-tools
];
2016-10-03 23:02:24 +01:00
buildInputs = [
qtbase
qttools
qtx11extras
2016-10-03 23:02:24 +01:00
libpulseaudio
2017-11-02 02:00:22 +00:00
pcre
2016-10-03 23:02:24 +01:00
];
passthru.updateScript = lxqt.lxqtUpdateScript { inherit pname version src; };
meta = with lib; {
homepage = "https://github.com/lxqt/pavucontrol-qt";
description = "A Pulseaudio mixer in Qt (port of pavucontrol)";
license = licenses.gpl2Plus;
2018-06-20 22:49:56 +01:00
platforms = with platforms; linux;
2017-02-19 12:16:38 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 23:02:24 +01:00
};
}