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

39 lines
848 B
Nix
Raw Normal View History

2017-11-02 02:00:22 +00:00
{ stdenv, fetchFromGitHub, cmake, pkgconfig, qt5, lxqt, libpulseaudio, pcre }:
2016-10-03 23:02:24 +01:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "pavucontrol-qt";
2017-11-02 02:00:22 +00:00
version = "0.3.0";
2016-10-03 23:02:24 +01:00
2017-11-02 02:00:22 +00:00
src = fetchFromGitHub {
2016-10-03 23:02:24 +01:00
owner = "lxde";
repo = pname;
rev = version;
2017-11-02 02:00:22 +00:00
sha256 = "1pfqdzsbygvq77npsizydps25d9g6vgw177yqvmz3cg3a68dad27";
2016-10-03 23:02:24 +01:00
};
2017-02-19 12:16:38 +00:00
nativeBuildInputs = [
cmake
pkgconfig
lxqt.lxqt-build-tools
];
2016-10-03 23:02:24 +01:00
buildInputs = [
qt5.qtbase
qt5.qttools
qt5.qtx11extras
libpulseaudio
2017-11-02 02:00:22 +00:00
pcre
2016-10-03 23:02:24 +01:00
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
meta = with stdenv.lib; {
description = "A Pulseaudio mixer in Qt (port of pavucontrol)";
homepage = https://github.com/lxde/pavucontrol-qt;
license = licenses.gpl2;
platforms = with platforms; unix;
2017-02-19 12:16:38 +00:00
maintainers = with maintainers; [ romildo ];
2016-10-03 23:02:24 +01:00
};
}