Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ 2 stdenv, 3 lib, 4 fetchurl, 5 cmake, 6 pkg-config, 7 wrapQtAppsHook, 8 extra-cmake-modules, 9 kcoreaddons, 10 kpeople, 11 kcontacts, 12}: 13 14stdenv.mkDerivation (finalAttrs: { 15 pname = "kpeoplevcard"; 16 version = "0.1"; 17 18 src = fetchurl { 19 url = "mirror://kde/stable/kpeoplevcard/${finalAttrs.version}/kpeoplevcard-${finalAttrs.version}.tar.xz"; 20 sha256 = "1hv3fq5k0pps1wdvq9r1zjnr0nxf8qc3vwsnzh9jpvdy79ddzrcd"; 21 }; 22 23 buildInputs = [ 24 kcoreaddons 25 kpeople 26 kcontacts 27 ]; 28 29 nativeBuildInputs = [ 30 cmake 31 pkg-config 32 wrapQtAppsHook 33 extra-cmake-modules 34 ]; 35 36 meta = with lib; { 37 description = "Pulseaudio bindings for Qt"; 38 homepage = "https://github.com/KDE/kpeoplevcard"; 39 license = with licenses; [ lgpl2 ]; 40 maintainers = with maintainers; [ doronbehar ]; 41 }; 42})