about summary refs log tree commit diff
path: root/pkgs/tools/security/aesfix/default.nix
blob: b2eb2e0e96ca6001d869269e6bca541b18baf3fb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 ];
  };
}