summary refs log tree commit diff
path: root/pkgs/tools/security/hologram/default.nix
blob: abdcd5d2d3eb071ec2662d97c4a5c489e6651844 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, lib, buildGoPackage, fetchgit, fetchhg, fetchbzr, fetchsvn }:

buildGoPackage rec {
  name = "hologram-${version}";
  version = "20170130-${stdenv.lib.strings.substring 0 7 rev}";
  rev = "d20d1c30379e7010e8f9c428a5b9e82f54d390e1";

  src = fetchgit {
    inherit rev;
    url = "https://github.com/AdRoll/hologram";
    sha256 = "0dg5kfs16kf2gzhpmzsg83qzi2pxgnc9g81lw5zpa6fmzpa9kgsn";
  };

  goPackagePath = "github.com/AdRoll/hologram";

  goDeps = ./deps.nix;

  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;
  };
}