Merge pull request #132181 from lovesegfault/rpiboot-stable

rpiboot: stabilize
This commit is contained in:
Jörg Thalheim
2021-07-31 03:56:52 +01:00
committed by GitHub
3 changed files with 7 additions and 6 deletions
@@ -1,14 +1,14 @@
{ lib, stdenv, fetchFromGitHub, libusb1 }:
stdenv.mkDerivation {
stdenv.mkDerivation rec {
pname = "rpiboot";
version = "unstable-2020-10-20";
version = "2021.07.01";
src = fetchFromGitHub {
owner = "raspberrypi";
repo = "usbboot";
rev = "d3760e119385a179765f43a50a8e051a44127c25";
sha256 = "0vygzh2h27xplqp1x4isj6kgrgmvmvc1mr3ghmsi98kzp91w772r";
rev = "v${version}";
sha256 = "sha256-BkNyYCrasfiRs7CbJa7tCo2k70TLGcXkOX+zGPyZGGE=";
};
nativeBuildInputs = [ libusb1 ];
@@ -26,7 +26,7 @@ stdenv.mkDerivation {
meta = with lib; {
homepage = "https://github.com/raspberrypi/usbboot";
description = "Utility to boot a Raspberry Pi CM/CM3/Zero over USB";
description = "Utility to boot a Raspberry Pi CM/CM3/CM4/Zero over USB";
license = licenses.asl20;
maintainers = with maintainers; [ cartr ];
platforms = [ "aarch64-linux" "armv7l-linux" "armv6l-linux" "x86_64-linux" ];
+1
View File
@@ -711,6 +711,7 @@ mapAliases ({
radare2-cutter = cutter; # added 2021-03-30
redkite = throw "redkite was archived by upstream"; # added 2021-04-12
rkt = throw "rkt was archived by upstream"; # added 2020-05-16
rpiboot-unstable = rpiboot; # added 2021-07-30
ruby_2_0_0 = throw "ruby_2_0_0 was deprecated on 2018-02-13: use a newer version of ruby";
ruby_2_1_0 = throw "ruby_2_1_0 was deprecated on 2018-02-13: use a newer version of ruby";
ruby_2_2_9 = throw "ruby_2_2_9 was deprecated on 2018-02-13: use a newer version of ruby";
+1 -1
View File
@@ -8567,7 +8567,7 @@ in
rpi-imager = libsForQt5.callPackage ../tools/misc/rpi-imager { };
rpiboot-unstable = callPackage ../development/misc/rpiboot/unstable.nix { };
rpiboot = callPackage ../development/misc/rpiboot { };
rpm = callPackage ../tools/package-management/rpm {
python = python3;