aboutsummaryrefslogtreecommitdiff
path: root/infra/libkookie/nixpkgs/pkgs/tools/security/cfssl/default.nix
blob: 1aef7b5bd5677cf7809ea93a1e20b080278af922 (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
46
47
48
49
{ stdenv, buildGoModule, fetchFromGitHub, go-rice }:

buildGoModule rec {
  pname = "cfssl";
  version = "1.4.1";

  src = fetchFromGitHub {
    owner = "cloudflare";
    repo = "cfssl";
    rev = "v${version}";
    sha256 = "07qacg95mbh94fv64y577zyr4vk986syf8h5l8lbcmpr0zcfk0pd";
  };

  subPackages = [
    "cmd/cfssl"
    "cmd/cfssljson"
    "cmd/cfssl-bundle"
    "cmd/cfssl-certinfo"
    "cmd/cfssl-newkey"
    "cmd/cfssl-scan"
    "cmd/multirootca"
    "cmd/mkbundle"
  ];

  vendorSha256 = null;

  doCheck = false;

  nativeBuildInputs = [ go-rice ];

  preBuild = ''
    pushd cli/serve
    rice embed-go
    popd
  '';

  buildFlagsArray = ''
    -ldflags=
      -s -w
      -X github.com/cloudflare/cfssl/cli/version.version=v${version}
  '';

  meta = with stdenv.lib; {
    homepage = "https://cfssl.org/";
    description = "Cloudflare's PKI and TLS toolkit";
    license = licenses.bsd2;
    maintainers = with maintainers; [ mbrgm ];
  };
}