qdl: format

+12 -7
+12 -7
pkgs/tools/misc/qdl/default.nix
··· 1 - { lib, stdenv, fetchFromGitHub, libxml2, systemd }: 1 + { lib 2 + , stdenv 3 + , fetchFromGitHub 4 + , libxml2 5 + , systemd 6 + }: 2 7 3 8 stdenv.mkDerivation { 4 9 pname = "qdl"; 5 10 version = "unstable-2021-05-06"; 6 11 7 12 src = fetchFromGitHub { 8 - owner = "andersson"; 9 - repo = "qdl"; 10 - rev = "2021b303a81ca1bcf21b7f1f23674b5c8747646f"; 13 + owner = "andersson"; 14 + repo = "qdl"; 15 + rev = "2021b303a81ca1bcf21b7f1f23674b5c8747646f"; 11 16 sha256 = "0akrdca4jjdkfdya36vy1y5vzimrc4pp5jm24rmlw8hbqxvj72ri"; 12 17 }; 13 18 ··· 20 25 ''; 21 26 22 27 meta = with lib; { 23 - homepage = "https://github.com/andersson/qdl"; 28 + homepage = "https://github.com/andersson/qdl"; 24 29 description = "Tool for flashing images to Qualcomm devices"; 25 - license = licenses.bsd3; 30 + license = licenses.bsd3; 26 31 maintainers = with maintainers; [ muscaln ]; 27 - platforms = platforms.linux; 32 + platforms = platforms.linux; 28 33 }; 29 34 }