summaryrefslogtreecommitdiffstats
path: root/pkgs/tools/security/cfssl
diff options
context:
space:
mode:
authorDavid Arnold <dar@xoe.solutions>2020-07-29 10:13:01 -0500
committerDavid Arnold <dar@xoe.solutions>2020-07-31 00:46:52 -0500
commitab1f69b099d71158336b3151256d3fc5f85673da (patch)
treedf7266b2fdcea84d6c792e0ead30cbf28ec9c66e /pkgs/tools/security/cfssl
parentc2618fc055b2ab28fb465fb43af31a3e8fee7cb8 (diff)
init: go-rice at 1.0.0
Diffstat (limited to 'pkgs/tools/security/cfssl')
-rw-r--r--pkgs/tools/security/cfssl/default.nix22
1 files changed, 5 insertions, 17 deletions
diff --git a/pkgs/tools/security/cfssl/default.nix b/pkgs/tools/security/cfssl/default.nix
index eabb38406dad..669110b9179f 100644
--- a/pkgs/tools/security/cfssl/default.nix
+++ b/pkgs/tools/security/cfssl/default.nix
@@ -1,19 +1,5 @@
-{ stdenv, buildGoModule, fetchFromGitHub }:
-
-let
- # Embed static files in the built-in webserver
- rice = buildGoModule rec {
- name = "rice";
- src = fetchFromGitHub {
- owner = "GeertJohan";
- repo = "go.rice";
- rev = "v1.0.0";
- sha256 = "0m1pkqnx9glf3mlx5jdaby9yxccbl02jpjgpi4m7x1hb4s2gn6vx";
- };
- vendorSha256 = "0cb5phyl2zm1xnkhvisv0lzgknsi93yzmpayg30w7jc6z4icwnw7";
- subPackages = [ "rice" ];
- };
-in
+{ stdenv, buildGoModule, fetchFromGitHub, go-rice }:
+
buildGoModule rec {
pname = "cfssl";
version = "1.4.1";
@@ -38,9 +24,11 @@ buildGoModule rec {
vendorSha256 = null;
+ nativeBuildInputs = [ go-rice ];
+
preBuild = ''
pushd cli/serve
- ${rice}/bin/rice embed-go
+ rice embed-go
popd
'';