mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
27 lines
707 B
Nix
27 lines
707 B
Nix
{ lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
pname = "hologram";
|
|
version = "unstable-2018-03-19";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AdRoll";
|
|
repo = "hologram";
|
|
rev = "a7bab58642b530edb75b9cf6c1d834c85822ceac";
|
|
sha256 = "00scryz8js6gbw8lp2y23qikbazz2dd992r97rqh0l1q4baa0ckn";
|
|
};
|
|
|
|
goPackagePath = "github.com/AdRoll/hologram";
|
|
|
|
preConfigure = ''
|
|
sed -i 's|cacheTimeout != 3600|cacheTimeout != 0|' cmd/hologram-server/main.go
|
|
'';
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/AdRoll/hologram/";
|
|
description = "Easy, painless AWS credentials on developer laptops";
|
|
maintainers = with maintainers; [ ];
|
|
license = licenses.asl20;
|
|
};
|
|
}
|