Skip to content

Commit

Permalink
libsForQt5.pulseaudio-qt: init at 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
doronbehar authored and FRidh committed Oct 8, 2020
1 parent 244ef6c commit faedc6a
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
35 changes: 35 additions & 0 deletions pkgs/development/libraries/pulseaudio-qt/default.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
{ mkDerivation
, lib
, fetchurl
, cmake
, extra-cmake-modules
, pkg-config
, pulseaudio
}:

mkDerivation rec {
pname = "pulseaudio-qt";
version = "1.2.0";

src = fetchurl {
url = "mirror://kde/stable/${pname}/${pname}-${lib.versions.majorMinor version}.tar.xz";
sha256 = "1i0ql68kxv9jxs24rsd3s7jhjid3f2fq56fj4wbp16zb4wd14099";
};

buildInputs = [
pulseaudio
];

nativeBuildInputs = [
pkg-config
cmake
extra-cmake-modules
];

meta = with lib; {
description = "Pulseaudio bindings for Qt";
homepage = "https://invent.kde.org/libraries/pulseaudio-qt";
license = with licenses; [ lgpl2 ];
maintainers = with maintainers; [ doronbehar ];
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -15110,6 +15110,8 @@ in
suffix = "qt5";
};

pulseaudio-qt = callPackage ../development/libraries/pulseaudio-qt { };

qca-qt5 = callPackage ../development/libraries/qca-qt5 { };

qmltermwidget = callPackage ../development/libraries/qmltermwidget {
Expand Down

0 comments on commit faedc6a

Please sign in to comment.