nixpkgs/pkgs/applications/kde/kmix.nix

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

23 lines
611 B
Nix
Raw Normal View History

{
2017-05-16 15:56:41 +00:00
mkDerivation, lib,
2017-05-17 19:26:11 +00:00
extra-cmake-modules, kdoctools,
kglobalaccel, kxmlgui, kcoreaddons,
plasma-framework, libpulseaudio, alsa-lib, libcanberra_kde
}:
2017-05-16 15:56:41 +00:00
mkDerivation {
2020-12-24 23:05:07 +00:00
pname = "kmix";
2017-05-16 15:56:41 +00:00
meta = {
homepage = "https://apps.kde.org/kmix/";
description = "Sound mixer";
2017-05-16 15:56:41 +00:00
license = with lib.licenses; [ gpl2 lgpl21 fdl12 ];
maintainers = [ lib.maintainers.rongcuid ];
};
2017-05-17 19:26:11 +00:00
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-06-21 13:50:56 +00:00
buildInputs = [
alsa-lib kglobalaccel kxmlgui kcoreaddons
2017-06-21 13:50:56 +00:00
libcanberra_kde libpulseaudio plasma-framework
2017-05-16 15:56:41 +00:00
];
2017-06-21 13:50:56 +00:00
cmakeFlags = [ "-DKMIX_KF5_BUILD=1" ];
}