summary refs log tree commit diff
diff options
context:
space:
mode:
authorThomas Tuegel <ttuegel@gmail.com>2015-05-20 07:24:14 -0500
committerThomas Tuegel <ttuegel@gmail.com>2015-05-20 07:25:13 -0500
commit49fa221c624a9a0d982b1f1b77a0a9376abda352 (patch)
treedfae1eb14092680e635f2505466780c1bc15ec1c
parent10ce7ae76938da13aba228b4d79f32479a4ea085 (diff)
downloadnixpkgs-49fa221c624a9a0d982b1f1b77a0a9376abda352.tar
nixpkgs-49fa221c624a9a0d982b1f1b77a0a9376abda352.tar.gz
nixpkgs-49fa221c624a9a0d982b1f1b77a0a9376abda352.tar.bz2
nixpkgs-49fa221c624a9a0d982b1f1b77a0a9376abda352.tar.lz
nixpkgs-49fa221c624a9a0d982b1f1b77a0a9376abda352.tar.xz
nixpkgs-49fa221c624a9a0d982b1f1b77a0a9376abda352.tar.zst
nixpkgs-49fa221c624a9a0d982b1f1b77a0a9376abda352.zip
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!
-rw-r--r--pkgs/development/libraries/libbluedevil/default.nix8
-rw-r--r--pkgs/tools/bluetooth/bluedevil/default.nix2
2 files changed, 7 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libbluedevil/default.nix b/pkgs/development/libraries/libbluedevil/default.nix
index 8443ddaa606..44b8d47b5e3 100644
--- a/pkgs/development/libraries/libbluedevil/default.nix
+++ b/pkgs/development/libraries/libbluedevil/default.nix
@@ -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 ];
diff --git a/pkgs/tools/bluetooth/bluedevil/default.nix b/pkgs/tools/bluetooth/bluedevil/default.nix
index 229b0512679..e018972d2aa 100644
--- a/pkgs/tools/bluetooth/bluedevil/default.nix
+++ b/pkgs/tools/bluetooth/bluedevil/default.nix
@@ -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 {