4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
49 lines
955 B
Nix
49 lines
955 B
Nix
{ lib, stdenv, buildGoModule, fetchFromGitHub, go-rice }:
|
|
|
|
buildGoModule rec {
|
|
pname = "cfssl";
|
|
version = "1.5.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "cloudflare";
|
|
repo = "cfssl";
|
|
rev = "v${version}";
|
|
sha256 = "1yzxz2l7h2d3f8j6l9xlm7g9659gsa17zf4q0883s0jh3l3xgs5n";
|
|
};
|
|
|
|
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 lib; {
|
|
homepage = "https://cfssl.org/";
|
|
description = "Cloudflare's PKI and TLS toolkit";
|
|
license = licenses.bsd2;
|
|
maintainers = with maintainers; [ mbrgm ];
|
|
};
|
|
}
|