aws-rotate-key: 1.0.6 -> 1.0.8
This commit is contained in:
parent
258637b969
commit
b6012814b6
2 changed files with 13 additions and 38 deletions
|
@ -1,25 +1,29 @@
|
||||||
{ lib, buildGoPackage, fetchFromGitHub }:
|
{ lib, buildGoModule, fetchFromGitHub, testers, aws-rotate-key }:
|
||||||
|
|
||||||
buildGoPackage rec {
|
buildGoModule rec {
|
||||||
pname = "aws-rotate-key";
|
pname = "aws-rotate-key";
|
||||||
version = "1.0.6";
|
version = "1.0.8";
|
||||||
|
|
||||||
goPackagePath = "github.com/Fullscreen/aws-rotate-key";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
rev = "v${version}";
|
|
||||||
owner = "Fullscreen";
|
owner = "Fullscreen";
|
||||||
repo = "aws-rotate-key";
|
repo = "aws-rotate-key";
|
||||||
sha256 = "1w9704g1l2b0y6g6mk79g28kk0yaswpgljkk85d0i10wyxq4icby";
|
rev = "v${version}";
|
||||||
|
sha256 = "sha256-5kV87uQDSc/qpm79Pd2nXo/EcbMlhZqFYaw+gJQa2uo=";
|
||||||
};
|
};
|
||||||
|
|
||||||
goDeps = ./deps.nix;
|
vendorSha256 = "sha256-h7tmJx/Um1Cy/ojiFjoKCH/LcOwhGU8ADb5WwmrkkJM=";
|
||||||
|
|
||||||
|
ldflags = [ "-s" "-w" ];
|
||||||
|
|
||||||
|
passthru.tests.version = testers.testVersion {
|
||||||
|
package = aws-rotate-key;
|
||||||
|
};
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Easily rotate your AWS key";
|
description = "Easily rotate your AWS key";
|
||||||
homepage = "https://github.com/Fullscreen/aws-rotate-key";
|
homepage = "https://github.com/Fullscreen/aws-rotate-key";
|
||||||
license = licenses.mit;
|
license = licenses.mit;
|
||||||
maintainers = [maintainers.mbode];
|
maintainers = [ maintainers.mbode ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
29
pkgs/tools/admin/aws-rotate-key/deps.nix
generated
29
pkgs/tools/admin/aws-rotate-key/deps.nix
generated
|
@ -1,29 +0,0 @@
|
||||||
[
|
|
||||||
{
|
|
||||||
goPackagePath = "github.com/go-ini/ini";
|
|
||||||
fetch = {
|
|
||||||
type = "git";
|
|
||||||
url = "https://github.com/go-ini/ini";
|
|
||||||
rev = "af26abd521cd7697481572fdbc4a53cbea3dde1b";
|
|
||||||
sha256 = "1yribbqy9i4i70dfg3yrjhkn3n0fywpr3kismn2mvi882mm01pxz";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
goPackagePath = "github.com/jmespath/go-jmespath";
|
|
||||||
fetch = {
|
|
||||||
type = "git";
|
|
||||||
url = "https://github.com/jmespath/go-jmespath";
|
|
||||||
rev = "c2b33e8439af944379acbdd9c3a5fe0bc44bd8a5";
|
|
||||||
sha256 = "1r6w7ydx8ydryxk3sfhzsk8m6f1nsik9jg3i1zhi69v4kfl4d5cz";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
{
|
|
||||||
goPackagePath = "github.com/aws/aws-sdk-go";
|
|
||||||
fetch = {
|
|
||||||
type = "git";
|
|
||||||
url = "https://github.com/aws/aws-sdk-go";
|
|
||||||
rev = "f844700ba2a387dfee7ab3679e7544b5dbd6d394";
|
|
||||||
sha256 = "0s9100bzqj58nnax3dxfgi5qr4rbaa53cb0cj3s58k9jc9z6270m";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
]
|
|
Loading…
Reference in a new issue