summary refs log tree commit diff
path: root/pkgs/development/tools/misc/uhd
diff options
context:
space:
mode:
authorBjørn Forsman <bjorn.forsman@gmail.com>2014-04-14 22:49:12 +0200
committerBjørn Forsman <bjorn.forsman@gmail.com>2014-04-15 07:11:41 +0200
commit5c2d17780d0fed25b9528d607fc0511a25eb21ae (patch)
treeed2324f3aa6f1cbe08a9dd54244ee75e98930551 /pkgs/development/tools/misc/uhd
parentc83903069f15df913e4ca45c9bd895d16ef11013 (diff)
downloadnixlib-5c2d17780d0fed25b9528d607fc0511a25eb21ae.tar
nixlib-5c2d17780d0fed25b9528d607fc0511a25eb21ae.tar.gz
nixlib-5c2d17780d0fed25b9528d607fc0511a25eb21ae.tar.bz2
nixlib-5c2d17780d0fed25b9528d607fc0511a25eb21ae.tar.lz
nixlib-5c2d17780d0fed25b9528d607fc0511a25eb21ae.tar.xz
nixlib-5c2d17780d0fed25b9528d607fc0511a25eb21ae.tar.zst
nixlib-5c2d17780d0fed25b9528d607fc0511a25eb21ae.zip
uhd: update 3.5.4 -> 3.7.0
Build tested (with gnuradio).
Diffstat (limited to 'pkgs/development/tools/misc/uhd')
-rw-r--r--pkgs/development/tools/misc/uhd/default.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/pkgs/development/tools/misc/uhd/default.nix b/pkgs/development/tools/misc/uhd/default.nix
index d49077a5ef6d..67ef086941e3 100644
--- a/pkgs/development/tools/misc/uhd/default.nix
+++ b/pkgs/development/tools/misc/uhd/default.nix
@@ -8,15 +8,15 @@
 
 stdenv.mkDerivation rec {
   name = "uhd-${version}";
-  version = "3.5.4";
+  version = "3.7.0";
 
   # UHD seems to use three different version number styles: x.y.z, xxx_yyy_zzz
   # and xxx.yyy.zzz. Hrmpf...
 
   src = fetchurl {
     name = "${name}.tar.gz";
-    url = "https://github.com/EttusResearch/uhd/archive/release_003_005_004.tar.gz";
-    sha256 = "1l11dv72r4ynfpw58aacq0kjylzw85yapv3kzc76lg6qgdb0pqrd";
+    url = "https://github.com/EttusResearch/uhd/archive/release_003_007_000.tar.gz";
+    sha256 = "0x9imfy63s6wlbilr2n82c15nd33ix0mbap0q1xwh2pj1mk4d5jk";
   };
 
   cmakeFlags = "-DLIBUSB_INCLUDE_DIRS=${libusb1}/include/libusb-1.0";
@@ -27,10 +27,10 @@ stdenv.mkDerivation rec {
   preConfigure = "cd host";
 
   # Firmware images are downloaded (pre-built)
-  uhdImagesName = "uhd-images_003.005.004-release";
+  uhdImagesName = "uhd-images_003.007.000-release";
   uhdImagesSrc = fetchurl {
     url = "http://files.ettus.com/binaries/maint_images/archive/${uhdImagesName}.tar.gz";
-    sha256 = "0lgy9076vshlaq7l4n3q1hka3q4xxzdz7mqh7kawg4dziq7j8nl6";
+    sha256 = "0vb0rc5ji8n6l6ycvd7pbazxzm0ihvkmqm77jflqrd3kky8r722d";
   };
 
   postPhases = [ "installFirmware" ];