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

26 lines
696 B
Nix
Raw Normal View History

{ stdenv, fetchgit, cmake, qtbase }:
2015-01-19 18:06:45 +01:00
stdenv.mkDerivation rec {
pname = "libdbusmenu-qt";
version = "0.9.3+16";
2015-01-19 18:06:45 +01:00
src = fetchgit {
url = "https://git.launchpad.net/ubuntu/+source/libdbusmenu-qt";
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; {
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 ];
inherit (qtbase.meta) platforms;
2018-10-18 21:47:12 +02:00
license = licenses.lgpl2;
2015-01-19 18:06:45 +01:00
};
}