summary refs log tree commit diff
path: root/pkgs/development/libraries/libdbusmenu-qt/qt5.nix
blob: 5f76162453c438c2d63b58461c0d66341c9a7864 (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, qt5, cmake }:

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 = [ qt5.base ];
  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;
  };
}