1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/lxqt/pavucontrol-qt/default.nix

39 lines
862 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, cmake, pkgconfig, lxqt, libpulseaudio, pcre, qtbase, qttools, qtx11extras }:
2016-10-03 18:02:24 -04:00
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "pavucontrol-qt";
2018-06-20 17:49:56 -04:00
version = "0.4.0";
2016-10-03 18:02:24 -04:00
2017-11-01 22:00:22 -04:00
src = fetchFromGitHub {
owner = "lxqt";
2016-10-03 18:02:24 -04:00
repo = pname;
rev = version;
2018-06-20 17:49:56 -04:00
sha256 = "1bxqpasfvaagbq8azl7536z2zk2725xg7jkvad5xh95zq1gb4hgk";
2016-10-03 18:02:24 -04:00
};
2017-02-19 07:16:38 -05:00
nativeBuildInputs = [
cmake
pkgconfig
lxqt.lxqt-build-tools
];
2016-10-03 18:02:24 -04:00
buildInputs = [
qtbase
qttools
qtx11extras
2016-10-03 18:02:24 -04:00
libpulseaudio
2017-11-01 22:00:22 -04:00
pcre
2016-10-03 18:02:24 -04:00
];
cmakeFlags = [ "-DPULL_TRANSLATIONS=NO" ];
meta = with stdenv.lib; {
description = "A Pulseaudio mixer in Qt (port of pavucontrol)";
homepage = https://github.com/lxqt/pavucontrol-qt;
2016-10-03 18:02:24 -04:00
license = licenses.gpl2;
2018-06-20 17:49:56 -04:00
platforms = with platforms; linux;
2017-02-19 07:16:38 -05:00
maintainers = with maintainers; [ romildo ];
2016-10-03 18:02:24 -04:00
};
}