about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/admin/ssl-cert-check/default.nix
blob: e6a83c397c5724962c843d8db5a6a32ced6db618 (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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
{ stdenv
, fetchFromGitHub
, makeWrapper
, openssl
, which
, gnugrep
, gnused
, gawk
, mktemp
, coreutils
, findutils
}:

stdenv.mkDerivation rec {
  pname = "ssl-cert-check";
  version = "3.31";

  src = fetchFromGitHub {
    owner = "Matty9191";
    repo = pname;
    rev = "698c1996d05152cfaf2a1a3df4cc70482411fac8";
    sha256 = "0jvi9phs0ngfwrj9zixb03v9byavbwxx8xkp0h5m98qppn1kvl3n";
  };

  nativeBuildInputs = [ makeWrapper ];

  buildInputs = [
    openssl
    which
    gnugrep
    mktemp
    gawk
    gnused
    coreutils
    findutils
  ];

  prePatch = ''
    substituteInPlace $pname --replace PATH= NOT_PATH=
  '';

  installPhase = ''
    mkdir -p $out/bin
    cp $pname $out/bin/$pname
    wrapProgram $out/bin/$pname \
      --set PATH "${stdenv.lib.makeBinPath buildInputs}"
  '';

  meta = with stdenv.lib; {
    description = "a Bourne shell script that can be used to report on expiring SSL certificates";
    homepage = https://github.com/Matty9191/ssl-cert-check;
    license = licenses.gpl2;
    maintainers = [ maintainers.ryantm ];
    platforms = platforms.linux;
  };

}