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.
This commit is contained in:
Benjamin Hipple 2018-10-19 20:07:13 +00:00
parent 382cd5463d
commit 9e056a9629

View File

@ -1,12 +1,13 @@
{ stdenv, fetchbzr, cmake, qtbase }:
{ stdenv, fetchgit, cmake, qtbase }:
stdenv.mkDerivation {
name = "libdbusmenu-qt-0.9.3+14";
stdenv.mkDerivation rec {
name = "libdbusmenu-qt-${version}";
version = "0.9.3+16";
src = fetchbzr {
url = "https://bazaar.launchpad.net/~dbusmenu-team/libdbusmenu-qt/trunk";
rev = "ps-jenkins@lists.canonical.com-20140619090718-mppiiax5atpnb8i2";
sha256 = "1dbhaljyivbv3wc184zpjfjmn24zb6aj72wgg1gg1xl5f783issd";
src = fetchgit {
url = https://git.launchpad.net/ubuntu/+source/libdbusmenu-qt;
rev = "import/${version}.04.20160218-1";
sha256 = "039yvklhbmfbcynrbqq9n5ywmj8bjfslnkzcnwpzyhnxdzb6yxlx";
};
buildInputs = [ qtbase ];