nixpkgs/pkgs/development/libraries/libdbusmenu-qt/qt-5.5.nix
Benjamin Hipple 9e056a9629 libdbusmenu-qt: 0.9.3+14 -> 0.9.3+16
The upgraded version has memory leak fixes and test case fixes for qt5.

This also swaps to git due to difficulties in fetching src with `bzr` without
'not a branch' errors.
2018-10-19 20:15:11 +00:00

26 lines
698 B
Nix

{ stdenv, fetchgit, cmake, qtbase }:
stdenv.mkDerivation rec {
name = "libdbusmenu-qt-${version}";
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";
meta = with stdenv.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;
};
}