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