1 { lib, stdenv, fetchgit, cmake, qtbase }:
3 stdenv.mkDerivation rec {
4 pname = "libdbusmenu-qt";
8 url = "https://git.launchpad.net/ubuntu/+source/libdbusmenu-qt";
9 rev = "import/${version}.04.20160218-1";
10 sha256 = "039yvklhbmfbcynrbqq9n5ywmj8bjfslnkzcnwpzyhnxdzb6yxlx";
13 buildInputs = [ qtbase ];
14 nativeBuildInputs = [ cmake ];
16 cmakeFlags = [ "-DWITH_DOC=OFF" ];
18 dontWrapQtApps = true;
21 homepage = "https://launchpad.net/libdbusmenu-qt";
22 description = "Provides a Qt implementation of the DBusMenu spec";
23 maintainers = [ maintainers.ttuegel ];
24 inherit (qtbase.meta) platforms;
25 license = licenses.lgpl2;