summary refs log tree commit diff
path: root/pkgs/development/libraries/libdbusmenu-qt/qt-5.5.nix
blob: e2ce87c2d66f895e114f8e85eb9bcb78be719294 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ stdenv, fetchbzr, cmake, qtbase }:

stdenv.mkDerivation {
  name = "libdbusmenu-qt-0.9.3+14";

  src = fetchbzr {
    url = "http://bazaar.launchpad.net/~dbusmenu-team/libdbusmenu-qt/trunk";
    rev = "ps-jenkins@lists.canonical.com-20140619090718-mppiiax5atpnb8i2";
    sha256 = "1dbhaljyivbv3wc184zpjfjmn24zb6aj72wgg1gg1xl5f783issd";
  };

  buildInputs = [ qtbase ];
  nativeBuildInputs = [ cmake ];

  cmakeFlags = "-DWITH_DOC=OFF";

  meta = with stdenv.lib; {
    homepage = "http://launchpad.net/libdbusmenu-qt";
    description = "Provides a Qt implementation of the DBusMenu spec";
    maintainers = [ maintainers.ttuegel ];
    inherit (qt5.base.meta) platforms;
  };
}