rpiboot: unstable-2020-05-11 -> unstable-2020-10-20

This commit is contained in:
Drew Risinger 2020-12-24 21:15:53 -05:00 committed by Florian Klink
parent e89369fae6
commit 8f0ace27b1

View File

@ -1,16 +1,14 @@
{ stdenv, fetchFromGitHub, libusb1 }: { stdenv, fetchFromGitHub, libusb1 }:
let stdenv.mkDerivation {
version = "2020-05-11"; pname = "rpiboot";
name = "rpiboot-unstable-${version}"; version = "unstable-2020-10-20";
in stdenv.mkDerivation {
inherit name;
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "raspberrypi"; owner = "raspberrypi";
repo = "usbboot"; repo = "usbboot";
rev = "c650cd747c1d0597487dcf319bf95b5ba775d78b"; rev = "d3760e119385a179765f43a50a8e051a44127c25";
sha256 = "17kapny79dh05vfmrniqdvz6xhpwnqnw0511ycfx4qcjh4krxh8n"; sha256 = "0vygzh2h27xplqp1x4isj6kgrgmvmvc1mr3ghmsi98kzp91w772r";
}; };
nativeBuildInputs = [ libusb1 ]; nativeBuildInputs = [ libusb1 ];
@ -26,11 +24,11 @@ in stdenv.mkDerivation {
cp -r msd $out/share/rpiboot cp -r msd $out/share/rpiboot
''; '';
meta = { meta = with stdenv.lib; {
homepage = "https://github.com/raspberrypi/usbboot"; 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/Zero over USB";
maintainers = [ stdenv.lib.maintainers.cartr ]; license = licenses.asl20;
license = stdenv.lib.licenses.asl20; maintainers = with maintainers; [ cartr ];
platforms = stdenv.lib.platforms.unix; platforms = [ "aarch64-linux" "armv7l-linux" "armv6l-linux" ];
}; };
} }