biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / misc / me_cleaner / default.nix
blobcd9ebe5816e4db1a06a4010dd0946c93288a53ed
1 { lib, python3, fetchFromGitHub }:
3 python3.pkgs.buildPythonPackage rec {
4   pname = "me_cleaner";
5   version = "1.2";
7   src = fetchFromGitHub {
8     owner = "corna";
9     repo = pname;
10     rev = "v${version}";
11     sha256 = "1bdj2clm13ir441vn7sv860xsc5gh71ja5lc2wn0gggnff0adxj4";
12   };
14   meta = with lib; {
15     inherit (src.meta) homepage;
16     description = "Tool for partial deblobbing of Intel ME/TXE firmware images";
17     longDescription = ''
18       me_cleaner is a Python script able to modify an Intel ME firmware image
19       with the final purpose of reducing its ability to interact with the system.
20     '';
21     license = licenses.gpl3;
22     maintainers = [ ];
23     mainProgram = "me_cleaner.py";
24   };