Skip to content

Commit

Permalink
bluez: 5.43 -> 5.47 for CVE-2017-1000250
Browse files Browse the repository at this point in the history
Fixes #29289.
  • Loading branch information
fpletz committed Sep 18, 2017
1 parent e137264 commit dadb16a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/os-specific/linux/bluez/bluez5.nix
Expand Up @@ -5,11 +5,11 @@
assert stdenv.isLinux;

stdenv.mkDerivation rec {
name = "bluez-5.43";
name = "bluez-5.47";

src = fetchurl {
url = "mirror://kernel/linux/bluetooth/${name}.tar.xz";
sha256 = "05cdnpz0w2lwq2x5ba87q1h2wgb4lfnpbnbh6p7499hx59fw1j8n";
sha256 = "1j22hfjz0fp4pgclgz9mfcwjbr4wqgah3gd2qhfg4r6msmybyxfg";
};

pythonPath = with pythonPackages;
Expand All @@ -36,6 +36,7 @@ stdenv.mkDerivation rec {
"--localstatedir=/var"
"--enable-library"
"--enable-cups"
"--enable-pie"
"--with-dbusconfdir=$(out)/etc"
"--with-dbussystembusdir=$(out)/share/dbus-1/system-services"
"--with-dbussessionbusdir=$(out)/share/dbus-1/services"
Expand All @@ -53,7 +54,6 @@ stdenv.mkDerivation rec {
# FIXME: Move these into a separate package to prevent Bluez from
# depending on Python etc.
postInstall = ''
cp ./attrib/gatttool $out/bin/gatttool
mkdir -p $test/test
cp -a test $test
pushd $test/test
Expand Down

2 comments on commit dadb16a

@bjornfor
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What happened to gatttool? (I'm not using it, but I remember there was a PR to add it. Now you're removing it without comment?)

@fpletz
Copy link
Member Author

@fpletz fpletz commented on dadb16a Sep 18, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Sorry, should've mentioned that in the commit. gatttool isn't built automatically anymore and I wasn't able to find out why quickly. I've opened an issue: #29542

Please sign in to comment.