mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-30 10:53:11 +00:00
5356420466
$ find -type f -name '*.nix' -print0 | xargs -P "$(nproc)" -0 sed -i \ -e 's!with lib.maintainers; \[ *\];![ ];!' \ -e 's!with maintainers; \[ *\];![ ];!'
26 lines
705 B
Nix
26 lines
705 B
Nix
{ lib, python3, fetchFromGitHub }:
|
|
|
|
python3.pkgs.buildPythonPackage rec {
|
|
pname = "me_cleaner";
|
|
version = "1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "corna";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "1bdj2clm13ir441vn7sv860xsc5gh71ja5lc2wn0gggnff0adxj4";
|
|
};
|
|
|
|
meta = with lib; {
|
|
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;
|
|
maintainers = [ ];
|
|
mainProgram = "me_cleaner.py";
|
|
};
|
|
}
|