mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
me_cleaner: init at 1.2
This commit is contained in:
parent
776f084cf1
commit
fd8f754242
2 changed files with 26 additions and 0 deletions
24
pkgs/tools/misc/me_cleaner/default.nix
Normal file
24
pkgs/tools/misc/me_cleaner/default.nix
Normal file
|
@ -0,0 +1,24 @@
|
|||
{ stdenv, buildPythonPackage, fetchFromGitHub }:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "me_cleaner";
|
||||
version = "1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "corna";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1bdj2clm13ir441vn7sv860xsc5gh71ja5lc2wn0gggnff0adxj4";
|
||||
};
|
||||
|
||||
meta = with stdenv.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 = with maintainers; [ gnidorah ];
|
||||
};
|
||||
}
|
|
@ -7773,6 +7773,8 @@ in
|
|||
|
||||
maude = callPackage ../development/interpreters/maude { };
|
||||
|
||||
me_cleaner = pythonPackages.callPackage ../tools/misc/me_cleaner { };
|
||||
|
||||
mesos = callPackage ../applications/networking/cluster/mesos {
|
||||
sasl = cyrus_sasl;
|
||||
inherit (pythonPackages) python boto setuptools wrapPython;
|
||||
|
|
Loading…
Reference in a new issue