nixpkgs/pkgs/development/libraries/libdbusmenu-qt/qt-5.5.nix

26 lines
692 B
Nix
Raw Normal View History

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