2021-12-19 01:06:50 +00:00
|
|
|
{ lib, python3, fetchFromGitHub }:
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
python3.pkgs.buildPythonPackage rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "me_cleaner";
|
|
|
|
version = "1.2";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "corna";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "1bdj2clm13ir441vn7sv860xsc5gh71ja5lc2wn0gggnff0adxj4";
|
|
|
|
};
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
inherit (src.meta) homepage;
|
|
|
|
description = "Tool for partial deblobbing of Intel ME/TXE firmware images";
|
|
|
|
longDescription = ''
|
|
|
|
me_cleaner is a Python script able to modify an Intel ME firmware image
|
|
|
|
with the final purpose of reducing its ability to interact with the system.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl3;
|
2021-05-20 23:08:51 +00:00
|
|
|
maintainers = with maintainers; [ ];
|
2024-01-02 11:29:13 +00:00
|
|
|
mainProgram = "me_cleaner.py";
|
2020-04-24 23:36:52 +00:00
|
|
|
};
|
|
|
|
}
|