Files
nixpkgs/pkgs/by-name/mv/mvt/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

52 lines
1.0 KiB
Nix

{
lib,
python3,
fetchFromGitHub,
}:
python3.pkgs.buildPythonApplication rec {
pname = "mvt";
pyproject = true;
version = "2.5.4";
src = fetchFromGitHub {
owner = "mvt-project";
repo = "mvt";
tag = "v${version}";
hash = "sha256-xDUjyvOsiweRqibTe7V8I/ABeaahCoR/d5w23qixp9A";
};
build-system = with python3.pkgs; [ setuptools ];
dependencies = with python3.pkgs; [
adb-shell
appdirs
click
cryptography
libusb1
iosbackup
packaging
pyahocorasick
pyyaml
requests
rich
simplejson
tld
];
nativeCheckInputs = with python3.pkgs; [
pytestCheckHook
pytest-mock
stix2
];
meta = {
description = "Tool to facilitate the consensual forensic analysis of Android and iOS devices";
homepage = "https://docs.mvt.re/en/latest/";
# https://github.com/mvt-project/mvt/blob/main/LICENSE
license = lib.licenses.unfree;
changelog = "https://github.com/mvt-project/mvt/releases/tag/v${version}";
maintainers = with lib.maintainers; [ PapayaJackal ];
};
}