qdl: format

This commit is contained in:
Mustafa Çalışkan 2023-10-21 07:14:22 +03:00
parent c340267c70
commit c8e434857f
No known key found for this signature in database
GPG Key ID: 53E17A18229A0391

View File

@ -1,13 +1,18 @@
{ lib, stdenv, fetchFromGitHub, libxml2, systemd }: { lib
, stdenv
, fetchFromGitHub
, libxml2
, systemd
}:
stdenv.mkDerivation { stdenv.mkDerivation {
pname = "qdl"; pname = "qdl";
version = "unstable-2021-05-06"; version = "unstable-2021-05-06";
src = fetchFromGitHub { src = fetchFromGitHub {
owner = "andersson"; owner = "andersson";
repo = "qdl"; repo = "qdl";
rev = "2021b303a81ca1bcf21b7f1f23674b5c8747646f"; rev = "2021b303a81ca1bcf21b7f1f23674b5c8747646f";
sha256 = "0akrdca4jjdkfdya36vy1y5vzimrc4pp5jm24rmlw8hbqxvj72ri"; sha256 = "0akrdca4jjdkfdya36vy1y5vzimrc4pp5jm24rmlw8hbqxvj72ri";
}; };
@ -20,10 +25,10 @@ stdenv.mkDerivation {
''; '';
meta = with lib; { meta = with lib; {
homepage = "https://github.com/andersson/qdl"; homepage = "https://github.com/andersson/qdl";
description = "Tool for flashing images to Qualcomm devices"; description = "Tool for flashing images to Qualcomm devices";
license = licenses.bsd3; license = licenses.bsd3;
maintainers = with maintainers; [ muscaln ]; maintainers = with maintainers; [ muscaln ];
platforms = platforms.linux; platforms = platforms.linux;
}; };
} }