qdl: unstable 2021-05-06 -> 2023-04-11
This commit is contained in:
parent
c8e434857f
commit
e04a933900
1 changed files with 7 additions and 5 deletions
|
@ -1,21 +1,23 @@
|
||||||
{ lib
|
{ lib
|
||||||
, stdenv
|
, stdenv
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
|
, pkg-config
|
||||||
, libxml2
|
, libxml2
|
||||||
, systemd
|
, systemd
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation {
|
stdenv.mkDerivation {
|
||||||
pname = "qdl";
|
pname = "qdl";
|
||||||
version = "unstable-2021-05-06";
|
version = "unstable-2023-04-11";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "andersson";
|
owner = "linux-msm";
|
||||||
repo = "qdl";
|
repo = "qdl";
|
||||||
rev = "2021b303a81ca1bcf21b7f1f23674b5c8747646f";
|
rev = "3b22df2bc7de02d867334af3a7aa8606db4f8cdd";
|
||||||
sha256 = "0akrdca4jjdkfdya36vy1y5vzimrc4pp5jm24rmlw8hbqxvj72ri";
|
sha256 = "sha256-2sL9HX73APTn9nQOx1Efdkz9F4bNASPMVFMx6YOqxyc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
buildInputs = [ systemd libxml2 ];
|
buildInputs = [ systemd libxml2 ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
@ -25,7 +27,7 @@ stdenv.mkDerivation {
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/andersson/qdl";
|
homepage = "https://github.com/linux-msm/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 ];
|
||||||
|
|
Loading…
Reference in a new issue