2018-07-21 02:44:44 +02:00
|
|
|
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
2017-05-28 18:33:22 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "cfssl-${version}";
|
2018-07-26 11:20:36 +02:00
|
|
|
version = "1.3.2";
|
2017-05-28 18:33:22 +02:00
|
|
|
|
|
|
|
goPackagePath = "github.com/cloudflare/cfssl";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "cloudflare";
|
|
|
|
repo = "cfssl";
|
2018-07-26 11:20:36 +02:00
|
|
|
rev = version;
|
|
|
|
sha256 = "0j2gz2vl2pf7ir7sc7jrwmjnr67hk4qhxw09cjx132jbk337jc9x";
|
2017-05-28 18:33:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://cfssl.org/;
|
|
|
|
description = "Cloudflare's PKI and TLS toolkit";
|
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.bsd2;
|
|
|
|
maintainers = with maintainers; [ mbrgm ];
|
|
|
|
};
|
|
|
|
}
|