lol

Merge pull request #166420 from FedX-sudo/master

aeskeyfind: init at 1.0

authored by

Fabian Affolter and committed by
GitHub
c9374e36 9f98b2bd

+32
+30
pkgs/tools/security/aeskeyfind/default.nix
···
··· 1 + { lib 2 + , stdenv 3 + , fetchurl 4 + }: 5 + 6 + stdenv.mkDerivation rec { 7 + pname = "aeskeyfind"; 8 + version = "1.0"; 9 + 10 + src = fetchurl { 11 + url = "https://citpsite.s3.amazonaws.com/memory-content/src/aeskeyfind-${version}.tar.gz"; 12 + sha256 = "sha256-FBflwbYehruVJ9sfW+4ZlaDuqCR12zy8iA4Ev3Bgg+Q="; 13 + }; 14 + 15 + installPhase = '' 16 + runHook preInstall 17 + mkdir -p $out/bin 18 + cp aeskeyfind $out/bin 19 + runHook postInstall 20 + ''; 21 + 22 + meta = with lib; { 23 + description = "Locates 128-bit and 256-bit AES keys in a captured memory image"; 24 + homepage = "https://citp.princeton.edu/our-work/memory/"; 25 + license = licenses.bsd3; 26 + maintainers = with maintainers; [ fedx-sudo ]; 27 + }; 28 + 29 + } 30 +
+2
pkgs/top-level/all-packages.nix
··· 201 202 aesfix = callPackage ../tools/security/aesfix { }; 203 204 astrolog = callPackage ../applications/science/astronomy/astrolog { }; 205 206 atkinson-hyperlegible = callPackage ../data/fonts/atkinson-hyperlegible { };
··· 201 202 aesfix = callPackage ../tools/security/aesfix { }; 203 204 + aeskeyfind = callPackage ../tools/security/aeskeyfind { }; 205 + 206 astrolog = callPackage ../applications/science/astronomy/astrolog { }; 207 208 atkinson-hyperlegible = callPackage ../data/fonts/atkinson-hyperlegible { };