python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / development / libraries / kpeoplevcard / default.nix
blobd2244a2523477a7997d60aceb5553fa5ae1a8af0
1 { mkDerivation
2 , lib
3 , fetchurl
4 , cmake
5 , extra-cmake-modules
6 , pkg-config
7 , kcoreaddons
8 , kpeople
9 , kcontacts
12 mkDerivation rec {
13   pname = "kpeoplevcard";
14   version = "0.1";
16   src = fetchurl {
17     url = "https://download.kde.org/stable/${pname}/${version}/${pname}-${version}.tar.xz";
18     sha256 = "1hv3fq5k0pps1wdvq9r1zjnr0nxf8qc3vwsnzh9jpvdy79ddzrcd";
19   };
21   buildInputs = [
22     kcoreaddons
23     kpeople
24     kcontacts
25   ];
27   nativeBuildInputs = [
28     pkg-config
29     cmake
30     extra-cmake-modules
31   ];
33   meta = with lib; {
34     description = "Pulseaudio bindings for Qt";
35     homepage    = "https://github.com/KDE/kpeoplevcard";
36     license     = with licenses; [ lgpl2 ];
37     maintainers = with maintainers; [ doronbehar ];
38   };