7bd65d54f7
While looking at the sphinx package I noticed it was heavily undermaintained, which is when we noticed nand0p has been inactive for roughly 18 months. It is therefore prudent to assume they will not be maintaining their packages, modules and tests. - Their last contribution to nixpkgs was in 2019/12 - On 2021/05/08 I wrote them an email to the address listed in the maintainer-list, which they didn't reply to.
27 lines
697 B
Nix
27 lines
697 B
Nix
{ lib, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "hologram-2018-03-19";
|
|
rev = "a7bab58642b530edb75b9cf6c1d834c85822ceac";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "AdRoll";
|
|
repo = "hologram";
|
|
inherit rev;
|
|
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;
|
|
};
|
|
}
|