about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/aesfix/default.nix
blob: fed9ace264c46b48f53dfbf7103910035d6c4d47 (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
27
{ 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";
    mainProgram = "aesfix";
    homepage = "https://citp.princeton.edu/our-work/memory/";
    maintainers = with maintainers; [ fedx-sudo ];
  };
}