raspberrypi-firmware: 20150506 -> 1.20160315 (#14300)

Cleanup the meta section, add viric and myself as maintainers.
This commit is contained in:
Octavian Cerna 2016-04-13 22:02:57 +03:00 committed by obadz
parent 6d8845ed8f
commit 1e37217b80

View file

@ -2,14 +2,14 @@
let
rev = "b7bbd3d1683e9f3bb11ef86b952adee71e83862f";
rev = "1.20160315";
in stdenv.mkDerivation {
name = "raspberrypi-firmware-${rev}";
src = fetchurl {
url = "https://github.com/raspberrypi/firmware/archive/${rev}.tar.gz";
sha256 = "16wpwa1y3imd3la477b3rfbfypssvlh0zjdag3hgkm33aysizijp";
sha256 = "0a7ycv01s0kk84szsh51hy2mjjil1dzdk0g7k83h50d5nya090fl";
};
installPhase = ''
@ -24,9 +24,11 @@ in stdenv.mkDerivation {
done
'';
meta = {
meta = with stdenv.lib; {
description = "Firmware for the Raspberry Pi board";
homepage = https://github.com/raspberrypi;
license = stdenv.lib.licenses.unfree;
license = licenses.unfree;
platforms = [ "armv6l-linux" "armv7l-linux" ];
maintainers = with maintainers; [ viric tavyc ];
};
}