blob: 62ee94c756b08a5c680c653d5015063a58405234 (
about) (
plain)
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
{
lib,
stdenv,
fetchFromGitHub,
python3Packages,
snagboot,
testers,
gitUpdater,
}:
python3Packages.buildPythonApplication rec {
pname = "snagboot";
version = "2.2";
pyproject = true;
src = fetchFromGitHub {
owner = "bootlin";
repo = "snagboot";
tag = "v${version}";
hash = "sha256-JXhh+Ed/ZwytNrMwvGw7jaDBvwDQiUKe+gBDezOCHO4=";
};
build-system = with python3Packages; [
setuptools
];
pythonRemoveDeps = [
"pylibfdt"
"swig"
];
dependencies = with python3Packages; [
pyyaml
pyusb
pyserial
tftpy
crccheck
# pylibfdt
# swig
packaging
];
optional-dependencies = with python3Packages; {
gui = [ kivy ];
};
postInstall = lib.optionalString stdenv.hostPlatform.isLinux ''
rules="src/snagrecover/50-snagboot.rules"
if [ ! -f "$rules" ]; then
echo "$rules is missing, must update the Nix file."
exit 1
fi
mkdir -p "$out/lib/udev/rules.d"
cp "$rules" "$out/lib/udev/rules.d/50-snagboot.rules"
'';
# There are no tests
doCheck = false;
passthru = {
updateScript = gitUpdater {
rev-prefix = "v";
ignoredVersions = ".(rc|beta).*";
};
tests.version = testers.testVersion {
package = snagboot;
command = "snagrecover --version";
version = "v${version}";
};
};
meta = {
homepage = "https://github.com/bootlin/snagboot";
description = "Generic recovery and reflashing tool for embedded platforms";
license = lib.licenses.gpl2;
maintainers = with lib.maintainers; [ otavio ];
};
}
|