lol
1{ lib, stdenv, fetchgit, cmake, qtbase }:
2
3stdenv.mkDerivation rec {
4 pname = "libdbusmenu-qt";
5 version = "0.9.3+16";
6
7 src = fetchgit {
8 url = "https://git.launchpad.net/ubuntu/+source/libdbusmenu-qt";
9 rev = "import/${version}.04.20160218-1";
10 sha256 = "039yvklhbmfbcynrbqq9n5ywmj8bjfslnkzcnwpzyhnxdzb6yxlx";
11 };
12
13 buildInputs = [ qtbase ];
14 nativeBuildInputs = [ cmake ];
15
16 cmakeFlags = [ "-DWITH_DOC=OFF" ];
17
18 dontWrapQtApps = true;
19
20 meta = with lib; {
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;
26 };
27}