2015-09-27 16:18:12 +01:00
|
|
|
{ stdenv, fetchbzr, cmake, qtbase }:
|
2015-01-19 17:06:45 +00:00
|
|
|
|
|
|
|
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";
|
|
|
|
};
|
|
|
|
|
2015-09-27 16:18:12 +01:00
|
|
|
buildInputs = [ qtbase ];
|
2015-01-19 17:06:45 +00:00
|
|
|
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 ];
|
2015-09-28 09:35:44 +01:00
|
|
|
inherit (qtbase.meta) platforms;
|
2015-01-19 17:06:45 +00:00
|
|
|
};
|
|
|
|
}
|