summary refs log tree commit diff
path: root/pkgs/tools/misc/qdl/default.nix
blob: e00b4f352e8f2041cb27a759153cd966b39a42eb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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; [ muscaln ];
    platforms   = platforms.linux;
  };
}