summaryrefslogtreecommitdiffstats
path: root/krebs/5pkgs/test/infest-cac-centos7/default.nix
blob: 9b14bf486555dccaa296b44b855a002b7e829cc1 (plain)
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
{ stdenv, coreutils, makeWrapper,
  cac-api, cac-cert, cac-panel, gnumake, gnused, jq, openssh, sshpass, proot,
  ... }:

stdenv.mkDerivation rec {
  name = "${shortname}-${version}";
  shortname = "infest-cac-centos7";
  version = "0.2.7";

  src = ./notes;

  phases = [
    "installPhase"
  ];

  buildInputs = [ makeWrapper ];

  path = stdenv.lib.makeSearchPath "bin" [
    coreutils
    cac-api
    cac-panel
    gnumake
    gnused
    jq
    openssh
    sshpass
    proot
  ];

  installPhase = ''
    mkdir -p $out/bin
    cp ${src} $out/bin/${shortname}
    chmod +x $out/bin/${shortname}
    wrapProgram $out/bin/${shortname} \
        --prefix PATH : ${path} \
        --set REQUESTS_CA_BUNDLE ${cac-cert} \
        --set SSL_CERT_FILE ${cac-cert}
  '';
  meta = with stdenv.lib; {
    homepage = http://krebsco.de;
    description = "infest a CaC box with stockholm";
    license = licenses.wtfpl;
    maintainers = [ maintainers.makefu ];
  };
}