Merge pull request #94123 from xoe-labs/da-cfssl-update
This commit is contained in:
commit
bccfcd358f
25
pkgs/tools/misc/go.rice/default.nix
Normal file
25
pkgs/tools/misc/go.rice/default.nix
Normal file
@ -0,0 +1,25 @@
|
|||||||
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
||||||
|
|
||||||
|
buildGoModule rec {
|
||||||
|
pname = "go.rice";
|
||||||
|
version = "1.0.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "GeertJohan";
|
||||||
|
repo = "go.rice";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "0m1pkqnx9glf3mlx5jdaby9yxccbl02jpjgpi4m7x1hb4s2gn6vx";
|
||||||
|
};
|
||||||
|
|
||||||
|
vendorSha256 = "0cb5phyl2zm1xnkhvisv0lzgknsi93yzmpayg30w7jc6z4icwnw7";
|
||||||
|
|
||||||
|
subPackages = [ "." "rice" ];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
homepage = "https://github.com/GeertJohan/go.rice";
|
||||||
|
description = "A Go package that makes working with resources such as html, js, css, images, templates very easy.";
|
||||||
|
license = licenses.bsd2;
|
||||||
|
maintainers = with maintainers; [ blaggacao ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -1,34 +1,47 @@
|
|||||||
{ stdenv, buildGoPackage, fetchFromGitHub, fetchpatch }:
|
{ stdenv, buildGoModule, fetchFromGitHub, go-rice }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "cfssl";
|
pname = "cfssl";
|
||||||
version = "1.3.2";
|
version = "1.4.1";
|
||||||
|
|
||||||
goPackagePath = "github.com/cloudflare/cfssl";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "cloudflare";
|
owner = "cloudflare";
|
||||||
repo = "cfssl";
|
repo = "cfssl";
|
||||||
rev = version;
|
rev = "v${version}";
|
||||||
sha256 = "0j2gz2vl2pf7ir7sc7jrwmjnr67hk4qhxw09cjx132jbk337jc9x";
|
sha256 = "07qacg95mbh94fv64y577zyr4vk986syf8h5l8lbcmpr0zcfk0pd";
|
||||||
};
|
};
|
||||||
|
|
||||||
# The following patch ensures that the auth-key decoder doesn't break,
|
subPackages = [
|
||||||
# if the auth-key file contains leading or trailing whitespaces.
|
"cmd/cfssl"
|
||||||
# https://github.com/cloudflare/cfssl/pull/923 is merged
|
"cmd/cfssljson"
|
||||||
# remove patch when it becomes part of a release.
|
"cmd/cfssl-bundle"
|
||||||
patches = [
|
"cmd/cfssl-certinfo"
|
||||||
(fetchpatch {
|
"cmd/cfssl-newkey"
|
||||||
url = "https://github.com/cloudflare/cfssl/commit/7e13f60773c96644db9dd8d342d42fe3a4d26f36.patch";
|
"cmd/cfssl-scan"
|
||||||
sha256 = "1z2v2i8yj7qpj8zj5f2q739nhrr9s59jwzfzk52wfgssl4vv5mn5";
|
"cmd/multirootca"
|
||||||
})
|
"cmd/mkbundle"
|
||||||
];
|
];
|
||||||
|
|
||||||
|
vendorSha256 = null;
|
||||||
|
|
||||||
|
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; {
|
meta = with stdenv.lib; {
|
||||||
homepage = "https://cfssl.org/";
|
homepage = "https://cfssl.org/";
|
||||||
description = "Cloudflare's PKI and TLS toolkit";
|
description = "Cloudflare's PKI and TLS toolkit";
|
||||||
license = licenses.bsd2;
|
license = licenses.bsd2;
|
||||||
maintainers = with maintainers; [ mbrgm ];
|
maintainers = with maintainers; [ mbrgm ];
|
||||||
platforms = platforms.all;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1913,6 +1913,8 @@ in
|
|||||||
|
|
||||||
gdrive = callPackage ../applications/networking/gdrive { };
|
gdrive = callPackage ../applications/networking/gdrive { };
|
||||||
|
|
||||||
|
go-rice = callPackage ../tools/misc/go.rice {};
|
||||||
|
|
||||||
go-2fa = callPackage ../tools/security/2fa {};
|
go-2fa = callPackage ../tools/security/2fa {};
|
||||||
|
|
||||||
go-dependency-manager = callPackage ../development/tools/gdm { };
|
go-dependency-manager = callPackage ../development/tools/gdm { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user