2016-06-06 02:28:52 +02:00
|
|
|
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:
|
2016-06-04 19:37:12 +02:00
|
|
|
|
|
|
|
buildGoPackage rec {
|
|
|
|
name = "hologram-${version}";
|
2017-02-01 17:26:55 +01:00
|
|
|
version = "20170130-${stdenv.lib.strings.substring 0 7 rev}";
|
|
|
|
rev = "d20d1c30379e7010e8f9c428a5b9e82f54d390e1";
|
2016-06-04 19:37:12 +02:00
|
|
|
|
|
|
|
src = fetchgit {
|
|
|
|
inherit rev;
|
|
|
|
url = "https://github.com/AdRoll/hologram";
|
2017-02-01 17:26:55 +01:00
|
|
|
sha256 = "0dg5kfs16kf2gzhpmzsg83qzi2pxgnc9g81lw5zpa6fmzpa9kgsn";
|
2016-06-04 19:37:12 +02:00
|
|
|
};
|
|
|
|
|
2017-02-01 17:26:55 +01:00
|
|
|
goPackagePath = "github.com/AdRoll/hologram";
|
|
|
|
|
2016-09-10 12:04:13 +02:00
|
|
|
goDeps = ./deps.nix;
|
2017-02-01 17:26:55 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = https://github.com/AdRoll/hologram/;
|
|
|
|
description = "Easy, painless AWS credentials on developer laptops.";
|
|
|
|
maintainers = with maintainers; [ nand0p ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
license = licenses.asl20;
|
|
|
|
};
|
2016-06-04 19:37:12 +02:00
|
|
|
}
|