mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-18 02:44:30 +00:00
xorex: init at 0.3.0
This commit is contained in:
parent
dbfbfa380e
commit
c253419a55
38
pkgs/tools/security/xorex/default.nix
Normal file
38
pkgs/tools/security/xorex/default.nix
Normal file
@ -0,0 +1,38 @@
|
||||
{ lib
|
||||
, python3
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "xorex";
|
||||
version = "0.3.0";
|
||||
format = "other";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Neo23x0";
|
||||
repo = "xorex";
|
||||
rev = version;
|
||||
sha256 = "rBsOSXWnHRhpLmq20XBuGx8gGBM8ouMyOISkbzUcvE4=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
|
||||
mkdir -p $out/bin
|
||||
chmod +x xorex.py
|
||||
mv xorex.py $out/bin/xorex
|
||||
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
propagatedBuildInputs = with python3.pkgs; [
|
||||
colorama
|
||||
pefile
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "XOR Key Extractor";
|
||||
homepage = "https://github.com/Neo23x0/xorex";
|
||||
license = licenses.asl20;
|
||||
maintainers = teams.determinatesystems.members;
|
||||
};
|
||||
}
|
@ -30689,6 +30689,8 @@ in
|
||||
|
||||
xortool = python3Packages.callPackage ../tools/security/xortool { };
|
||||
|
||||
xorex = callPackage ../tools/security/xorex { };
|
||||
|
||||
xow = callPackage ../misc/drivers/xow { };
|
||||
|
||||
xbps = callPackage ../tools/package-management/xbps { };
|
||||
|
Loading…
Reference in New Issue
Block a user