summary refs log tree commit diff
path: root/pkgs/development/libraries/jitterentropy/default.nix
blob: 11f6141872db0bc5db5bc989b62012b60d062283 (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
28
29
30
31
32
33
34
35
36
37
{ lib, stdenv, fetchFromGitHub }:
stdenv.mkDerivation rec {
  pname = "jitterentropy";
  version = "2.2.0";

  src = fetchFromGitHub {
    owner = "smuellerDD";
    repo = "jitterentropy-library";
    rev = "v${version}";
    sha256 = "0n2l1fxr7bynnarpwdjifb2fvlsq8w5wmfh31yk5nrc756cjlgyw";
  };
  patches = [
    # Can be removed when upgrading beyond 2.2.0
    ./reproducible-manpages.patch
  ];

  enableParallelBuilding = true;

  preInstall = ''
    mkdir -p $out/include
    substituteInPlace Makefile \
      --replace "install -m 0755 -s" \
                'install -m 0755 -s --strip-program $(STRIP)'
  '';

  installFlags = [
    "PREFIX=$(out)"
  ];

  meta = {
    description = "Provides a noise source using the CPU execution timing jitter";
    homepage = "https://github.com/smuellerDD/jitterentropy-library";
    license = with lib.licenses; [ gpl2 bsd3 ];
    platforms = lib.platforms.linux;
    maintainers = with lib.maintainers; [ johnazoidberg ];
  };
}