Merge pull request #166301 from FedX-sudo/master

This commit is contained in:
Sandro 2022-03-30 02:02:33 +02:00 committed by GitHub
commit a4c72214e3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View file

@ -0,0 +1,26 @@
{ lib
, stdenv
, fetchurl
}:
stdenv.mkDerivation rec {
pname = "aesfix";
version = "1.0.1";
src = fetchurl {
url = "https://citpsite.s3.amazonaws.com/memory-content/src/aesfix-${version}.tar.gz";
sha256 = "sha256-exd+h2yu5qrkjwEjEC8R32WUpzhIP5pH8sdv6BzARdQ=";
};
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp aesfix $out/bin
runHook postInstall
'';
meta = with lib; {
description = "Correct bit errors in an AES key schedules";
homepage = "https://citp.princeton.edu/our-work/memory/";
maintainers = with maintainers; [ fedx-sudo ];
};
}

View file

@ -199,6 +199,8 @@ with pkgs;
aocd = with python3Packages; toPythonApplication aocd;
aesfix = callPackage ../tools/security/aesfix { };
astrolog = callPackage ../applications/science/astronomy/astrolog { };
atkinson-hyperlegible = callPackage ../data/fonts/atkinson-hyperlegible { };