2021-01-25 00:26:54 -08:00
|
|
|
{ lib, buildGoPackage, fetchFromGitHub }:
|
2016-06-04 10:37:12 -07:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
2018-03-20 00:25:13 -07:00
|
|
|
name = "hologram-2018-03-19";
|
|
|
|
rev = "a7bab58642b530edb75b9cf6c1d834c85822ceac";
|
2016-06-04 10:37:12 -07:00
|
|
|
|
2018-03-20 00:25:13 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "AdRoll";
|
|
|
|
repo = "hologram";
|
2016-06-04 10:37:12 -07:00
|
|
|
inherit rev;
|
2018-03-20 00:25:13 -07:00
|
|
|
sha256 = "00scryz8js6gbw8lp2y23qikbazz2dd992r97rqh0l1q4baa0ckn";
|
2016-06-04 10:37:12 -07:00
|
|
|
};
|
|
|
|
|
2017-02-01 08:26:55 -08:00
|
|
|
goPackagePath = "github.com/AdRoll/hologram";
|
|
|
|
|
2017-07-05 03:21:51 -07:00
|
|
|
preConfigure = ''
|
|
|
|
sed -i 's|cacheTimeout != 3600|cacheTimeout != 0|' cmd/hologram-server/main.go
|
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/AdRoll/hologram/";
|
2020-10-10 22:55:05 -07:00
|
|
|
description = "Easy, painless AWS credentials on developer laptops";
|
2021-05-14 07:00:41 -07:00
|
|
|
maintainers = with maintainers; [ ];
|
2017-02-01 08:26:55 -08:00
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
2016-06-04 10:37:12 -07:00
|
|
|
}
|