mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
aesfix: init at v1.0.1
aesfix: init at v1.0.1 aesfix: init at v1.0.1 aesfx: init at v1.0.1 Update pkgs/tools/security/aesfix/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Update pkgs/tools/security/aesfix/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Update pkgs/tools/security/aesfix/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Update pkgs/tools/security/aesfix/default.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
This commit is contained in:
parent
502592f3d5
commit
32a8f307ac
2 changed files with 28 additions and 0 deletions
26
pkgs/tools/security/aesfix/default.nix
Normal file
26
pkgs/tools/security/aesfix/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
|
@ -188,6 +188,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 { };
|
||||
|
|
Loading…
Reference in a new issue