uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
48
pkgs/tools/security/cliam/default.nix
Normal file
48
pkgs/tools/security/cliam/default.nix
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
, installShellFiles
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "cliam";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "securisec";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-bq7u6pknokyY4WwO1qMYPuY86UZlDgeYEa1AJpk8d+4=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-aGBA97EvIUv9myqcrtltiVxh1/0VtrQy2j9GU6r197g=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
installShellFiles
|
||||
];
|
||||
|
||||
ldflags = [
|
||||
"-s"
|
||||
"-w"
|
||||
"-X github.com/securisec/cliam/cli/version.Version=${version}"
|
||||
];
|
||||
|
||||
postBuild = ''
|
||||
# should be called cliam
|
||||
mv $GOPATH/bin/{cli,cliam}
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
installShellCompletion --cmd cliam \
|
||||
--bash <($out/bin/cliam completion bash) \
|
||||
--fish <($out/bin/cliam completion fish) \
|
||||
--zsh <($out/bin/cliam completion zsh)
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Cloud agnostic IAM permissions enumerator";
|
||||
homepage = "https://github.com/securisec/cliam";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue