aeskeyfind: init at 1.0
Update pkgs/tools/security/aeskeyfind/default.nix Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch> Update pkgs/tools/security/aeskeyfind/default.nix Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch> Update pkgs/tools/security/aeskeyfind/default.nix Co-authored-by: Fabian Affolter <mail@fabian-affolter.ch> Update pkgs/tools/security/aeskeyfind/default.nix Co-authored-by: papojari <papojari-git.ovoid@aleeas.com>
This commit is contained in:
parent
32a8f307ac
commit
1ecf02c69f
30
pkgs/tools/security/aeskeyfind/default.nix
Normal file
30
pkgs/tools/security/aeskeyfind/default.nix
Normal file
@ -0,0 +1,30 @@
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "aeskeyfind";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://citpsite.s3.amazonaws.com/memory-content/src/aeskeyfind-${version}.tar.gz";
|
||||
sha256 = "sha256-FBflwbYehruVJ9sfW+4ZlaDuqCR12zy8iA4Ev3Bgg+Q=";
|
||||
};
|
||||
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out/bin
|
||||
cp aeskeyfind $out/bin
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Locates 128-bit and 256-bit AES keys in a captured memory image";
|
||||
homepage = "https://citp.princeton.edu/our-work/memory/";
|
||||
license = bsd3;
|
||||
maintainers = with maintainers; [ fedx-sudo ];
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -190,6 +190,8 @@ with pkgs;
|
||||
|
||||
aesfix = callPackage ../tools/security/aesfix { };
|
||||
|
||||
aeskeyfind = callPackage ../tools/security/aeskeyfind { };
|
||||
|
||||
astrolog = callPackage ../applications/science/astronomy/astrolog { };
|
||||
|
||||
atkinson-hyperlegible = callPackage ../data/fonts/atkinson-hyperlegible { };
|
||||
|
Loading…
Reference in New Issue
Block a user