Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

libbladeRF: 1.4.0 -> 1.9.0 (#33551)


authored by markuskowa and committed by Jörg Thalheim 6bbf5037 ab73b0cb

+3 -3
+3 -3
pkgs/development/libraries/libbladeRF/default.nix
··· 2 2 , libusb1, udev }: 3 3 4 4 stdenv.mkDerivation rec { 5 - version = "1.4.0"; 5 + version = "1.9.0"; 6 6 name = "libbladeRF-v${version}"; 7 7 8 8 src = fetchFromGitHub { 9 9 owner = "Nuand"; 10 10 repo = "bladeRF"; 11 11 rev = "libbladeRF_v${version}"; 12 - sha256 = "1y00hqsmqaix4dql8mb75zx87zvn8b483yxv53x9qyjspksbs60c"; 12 + sha256 = "0frvphp4xxdxwzmi94b0asl7b891sd3fk8iw9kfk8h6f3cdhj8xa"; 13 13 }; 14 14 15 15 nativeBuildInputs = [ pkgconfig ]; ··· 35 35 description = "Supporting library of the BladeRF SDR opensource hardware"; 36 36 license = licenses.lgpl21; 37 37 maintainers = with maintainers; [ funfunctor ]; 38 - platforms = platforms.linux; 38 + platforms = with platforms; linux; 39 39 }; 40 40 }