mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 11:05:14 +00:00
Merge pull request #125188 from musfay/qdl
This commit is contained in:
commit
950b4ddfdf
@ -7105,6 +7105,12 @@
|
||||
githubId = 5047140;
|
||||
name = "Victor Collod";
|
||||
};
|
||||
musfay = {
|
||||
email = "musfay@protonmail.com";
|
||||
github = "musfay";
|
||||
githubId = 33374965;
|
||||
name = "Mustafa Çalışkan";
|
||||
};
|
||||
mupdt = {
|
||||
email = "nix@pdtpartners.com";
|
||||
github = "mupdt";
|
||||
|
29
pkgs/tools/misc/qdl/default.nix
Normal file
29
pkgs/tools/misc/qdl/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib, stdenv, fetchFromGitHub, libxml2, systemd }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "qdl";
|
||||
version = "unstable-2021-05-06";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "andersson";
|
||||
repo = "qdl";
|
||||
rev = "2021b303a81ca1bcf21b7f1f23674b5c8747646f";
|
||||
sha256 = "0akrdca4jjdkfdya36vy1y5vzimrc4pp5jm24rmlw8hbqxvj72ri";
|
||||
};
|
||||
|
||||
buildInputs = [ systemd libxml2 ];
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
install -Dm755 ./qdl -t $out/bin
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/andersson/qdl";
|
||||
description = "Tool for flashing images to Qualcomm devices";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ musfay ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
@ -30921,6 +30921,8 @@ in
|
||||
|
||||
py-wmi-client = callPackage ../tools/networking/py-wmi-client { };
|
||||
|
||||
qdl = callPackage ../tools/misc/qdl { };
|
||||
|
||||
rargs = callPackage ../tools/misc/rargs { };
|
||||
|
||||
rauc = callPackage ../tools/misc/rauc { };
|
||||
|
Loading…
Reference in New Issue
Block a user