Skip to content

Commit

Permalink
Merge pull request NixOS#332427 from xddxdd/edl
Browse files Browse the repository at this point in the history
edl: unstable-2022-09-07 -> 3.52.1-unstable-2024-07-05
  • Loading branch information
jian-lin authored Aug 21, 2024
2 parents 977d878 + 391a2d4 commit 308405f
Showing 1 changed file with 16 additions and 6 deletions.
22 changes: 16 additions & 6 deletions pkgs/development/embedded/edl/default.nix
Original file line number Diff line number Diff line change
@@ -1,15 +1,21 @@
{ lib, stdenv, fetchFromGitHub, python3Packages }:
{
lib,
stdenv,
fetchFromGitHub,
python3Packages,
unstableGitUpdater,
}:

python3Packages.buildPythonPackage {
pname = "edl";
version = "unstable-2022-09-07";
version = "3.52.1-unstable-2024-07-05";

src = fetchFromGitHub {
owner = "bkerler";
repo = "edl";
rev = "f6b94da5faa003b48d24a5f4a8f0b8495626fd5b";
rev = "53671740213046bcf875acd2feb1c1d07fb1605c";
fetchSubmodules = true;
hash = "sha256-bxnRy+inWNArE2gUA/qDPy7NKvqBm43sbxdIaTc9N28=";
hash = "sha256-jm5BSnjAuqOa5oHhboruqQJ9BdsyjQic4vbwSNgIneQ=";
};

propagatedBuildInputs = with python3Packages; [
Expand Down Expand Up @@ -40,13 +46,17 @@ python3Packages.buildPythonPackage {
cp $src/Drivers/51-edl.rules $out/etc/udev/rules.d/51-edl.rules
'';

passthru.updateScript = unstableGitUpdater { };

meta = with lib; {
homepage = "https://github.com/bkerler/edl";
description = "Qualcomm EDL tool (Sahara / Firehose / Diag)";
license = licenses.mit;
maintainers = with maintainers; [ lorenz ];
maintainers = with maintainers; [
lorenz
xddxdd
];
# Case-sensitive files in 'Loader' submodule
broken = stdenv.isDarwin;
};
}

0 comments on commit 308405f

Please sign in to comment.