summary refs log tree commit diff
path: root/pkgs/development/misc
diff options
context:
space:
mode:
authorDrew Risinger <drewrisinger@users.noreply.github.com>2020-12-24 21:15:53 -0500
committerFlorian Klink <flokli@flokli.de>2020-12-27 17:01:02 +0100
commit8f0ace27b10ee9059ff0049cb6995058e04ddab5 (patch)
tree8893d5b471fea851857f1467f20c69d5e09fdea5 /pkgs/development/misc
parente89369fae6fd9a08058026f264357ad2f0c8c827 (diff)
downloadnixpkgs-8f0ace27b10ee9059ff0049cb6995058e04ddab5.tar
nixpkgs-8f0ace27b10ee9059ff0049cb6995058e04ddab5.tar.gz
nixpkgs-8f0ace27b10ee9059ff0049cb6995058e04ddab5.tar.bz2
nixpkgs-8f0ace27b10ee9059ff0049cb6995058e04ddab5.tar.lz
nixpkgs-8f0ace27b10ee9059ff0049cb6995058e04ddab5.tar.xz
nixpkgs-8f0ace27b10ee9059ff0049cb6995058e04ddab5.tar.zst
nixpkgs-8f0ace27b10ee9059ff0049cb6995058e04ddab5.zip
rpiboot: unstable-2020-05-11 -> unstable-2020-10-20
Diffstat (limited to 'pkgs/development/misc')
-rw-r--r--pkgs/development/misc/rpiboot/unstable.nix20
1 files changed, 9 insertions, 11 deletions
diff --git a/pkgs/development/misc/rpiboot/unstable.nix b/pkgs/development/misc/rpiboot/unstable.nix
index a8f7e4795e7..2df6314aa2f 100644
--- a/pkgs/development/misc/rpiboot/unstable.nix
+++ b/pkgs/development/misc/rpiboot/unstable.nix
@@ -1,16 +1,14 @@
 { stdenv, fetchFromGitHub, libusb1 }:
 
-let
-  version = "2020-05-11";
-  name = "rpiboot-unstable-${version}";
-in stdenv.mkDerivation {
-  inherit name;
+stdenv.mkDerivation {
+  pname = "rpiboot";
+  version = "unstable-2020-10-20";
 
   src = fetchFromGitHub {
     owner = "raspberrypi";
     repo = "usbboot";
-    rev = "c650cd747c1d0597487dcf319bf95b5ba775d78b";
-    sha256 = "17kapny79dh05vfmrniqdvz6xhpwnqnw0511ycfx4qcjh4krxh8n";
+    rev = "d3760e119385a179765f43a50a8e051a44127c25";
+    sha256 = "0vygzh2h27xplqp1x4isj6kgrgmvmvc1mr3ghmsi98kzp91w772r";
   };
 
   nativeBuildInputs = [ libusb1 ];
@@ -26,11 +24,11 @@ in stdenv.mkDerivation {
     cp -r msd $out/share/rpiboot
   '';
 
-  meta = {
+  meta = with stdenv.lib; {
     homepage = "https://github.com/raspberrypi/usbboot";
     description = "Utility to boot a Raspberry Pi CM/CM3/Zero over USB";
-    maintainers = [ stdenv.lib.maintainers.cartr ];
-    license = stdenv.lib.licenses.asl20;
-    platforms = stdenv.lib.platforms.unix;
+    license = licenses.asl20;
+    maintainers = with maintainers; [ cartr ];
+    platforms = [ "aarch64-linux" "armv7l-linux" "armv6l-linux" ];
   };
 }