My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/tools/security/aesfix/default.nix

26 lines
605 B

{ 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 ];
};
}