Update libbluedevil to 2.1

The bluedevil build has been failing since it was updated to
2.1.1. Bluedevil and libbluedevil must be kept at the same major version!
This commit is contained in:
Thomas Tuegel 2015-05-20 07:24:14 -05:00
parent 10ce7ae769
commit 49fa221c62
2 changed files with 7 additions and 3 deletions

View File

@ -3,11 +3,13 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "libbluedevil";
version = "1.9.3";
# bluedevil must have the same major version (x.y) as libbluedevil!
# do not update this package without checking bluedevil
version = "2.1";
src = fetchurl {
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.bz2";
sha256 = "0fdq083145mb3ynw14pc471ahp7is48wqpmswrvfz3hkyayriss3";
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
sha256 = "0p4f0brhcz9gfxfd6114fa5x6swfdmgzv350xwncdr0s1qnamk8c";
};
buildInputs = [ cmake qt4 ];

View File

@ -3,6 +3,8 @@
stdenv.mkDerivation rec {
name = "${pname}-${version}";
pname = "bluedevil";
# bluedevil must have the same major version (x.y) as libbluedevil!
# do not update this package without checking libbluedevil
version = "2.1.1";
src = fetchurl {