aboutsummaryrefslogtreecommitdiff
path: root/pkgs/development/libraries/gusb
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2017-02-27 08:30:20 -0500
committerShea Levy <shea@shealevy.com>2017-02-27 08:30:20 -0500
commitfa84ad2593cde6494a8212078bd971237e5981a5 (patch)
tree472dc06798e2f413fefe61dbcb5a28dd6c96693c /pkgs/development/libraries/gusb
parent0c2f96a81f848b28fd343e2fe9e0e7cb397cbbc8 (diff)
gusb: 0.2.4 -> 0.2.9
Diffstat (limited to 'pkgs/development/libraries/gusb')
-rw-r--r--pkgs/development/libraries/gusb/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/development/libraries/gusb/default.nix b/pkgs/development/libraries/gusb/default.nix
index ac0425b54ad8..5116e39562c8 100644
--- a/pkgs/development/libraries/gusb/default.nix
+++ b/pkgs/development/libraries/gusb/default.nix
@@ -4,22 +4,23 @@
}:
stdenv.mkDerivation rec {
name = "gusb-${version}";
- version = "0.2.4";
+ version = "0.2.9";
enableParallelBuilding = true;
src = fetchurl {
url = "http://people.freedesktop.org/~hughsient/releases/libgusb-${version}.tar.xz";
- sha256 = "10w0sdq7505iwd8y305aylmx4zafbnphs81cgdsqw2z38pxncya3";
+ sha256 = "056yxlppgycsfw1l8c9j6givk1n15jylhvx89wqhsxdi1b6vs83k";
};
preConfigure = "./autogen.sh";
buildInputs = [
pkgconfig autoconf automake libtool which gtkdoc gettext gobjectIntrospection libxslt
- systemd libusb1 vala_0_23
- glib
+ systemd vala_0_23 glib
];
+ propagatedBuildInputs = [ libusb1 ];
+
meta = {
description = "GLib libusb wrapper";
homepage = http://people.freedesktop.org/~hughsient/releases/;