depot/pkgs/development/libraries/libdbusmenu-qt/qt-5.5.nix
Luke Granger-Brown 57725ef3ec Squashed 'third_party/nixpkgs/' content from commit 76612b17c0ce
git-subtree-dir: third_party/nixpkgs
git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
2024-11-10 23:59:47 +00:00

27 lines
720 B
Nix

{ lib, stdenv, fetchgit, cmake, qtbase }:
stdenv.mkDerivation rec {
pname = "libdbusmenu-qt";
version = "0.9.3+16";
src = fetchgit {
url = "https://git.launchpad.net/ubuntu/+source/libdbusmenu-qt";
rev = "import/${version}.04.20160218-1";
sha256 = "039yvklhbmfbcynrbqq9n5ywmj8bjfslnkzcnwpzyhnxdzb6yxlx";
};
buildInputs = [ qtbase ];
nativeBuildInputs = [ cmake ];
cmakeFlags = [ "-DWITH_DOC=OFF" ];
dontWrapQtApps = true;
meta = with lib; {
homepage = "https://launchpad.net/libdbusmenu-qt";
description = "Provides a Qt implementation of the DBusMenu spec";
maintainers = [ maintainers.ttuegel ];
inherit (qtbase.meta) platforms;
license = licenses.lgpl2;
};
}