summary refs log blame commit diff
path: root/pkgs/tools/misc/qdl/default.nix
blob: 79b9cec2ed5c7355510072b75c9b6b58775e8469 (plain) (tree)




























                                                                    
{ 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;
  };
}