2018-10-19 22:07:13 +02:00
|
|
|
{ stdenv, fetchgit, cmake, qtbase }:
|
2015-01-19 18:06:45 +01:00
|
|
|
|
2018-10-19 22:07:13 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "libdbusmenu-qt";
|
2018-10-19 22:07:13 +02:00
|
|
|
version = "0.9.3+16";
|
2015-01-19 18:06:45 +01:00
|
|
|
|
2018-10-19 22:07:13 +02:00
|
|
|
src = fetchgit {
|
2020-04-01 03:11:51 +02:00
|
|
|
url = "https://git.launchpad.net/ubuntu/+source/libdbusmenu-qt";
|
2018-10-19 22:07:13 +02:00
|
|
|
rev = "import/${version}.04.20160218-1";
|
|
|
|
sha256 = "039yvklhbmfbcynrbqq9n5ywmj8bjfslnkzcnwpzyhnxdzb6yxlx";
|
2015-01-19 18:06:45 +01:00
|
|
|
};
|
|
|
|
|
2015-09-27 17:18:12 +02:00
|
|
|
buildInputs = [ qtbase ];
|
2015-01-19 18:06:45 +01:00
|
|
|
nativeBuildInputs = [ cmake ];
|
|
|
|
|
2019-10-26 17:39:27 +02:00
|
|
|
cmakeFlags = [ "-DWITH_DOC=OFF" ];
|
2015-01-19 18:06:45 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://launchpad.net/libdbusmenu-qt";
|
2015-01-19 18:06:45 +01:00
|
|
|
description = "Provides a Qt implementation of the DBusMenu spec";
|
|
|
|
maintainers = [ maintainers.ttuegel ];
|
2015-09-28 10:35:44 +02:00
|
|
|
inherit (qtbase.meta) platforms;
|
2018-10-18 21:47:12 +02:00
|
|
|
license = licenses.lgpl2;
|
2015-01-19 18:06:45 +01:00
|
|
|
};
|
|
|
|
}
|