summary refs log tree commit diff
path: root/pkgs/development/tools/packet/default.nix
blob: eb1a48d24b84019efb680438be09c32d5af0cdec (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
26
27
# This file was generated by go2nix.
{ stdenv, buildGoPackage, fetchFromGitHub }:

buildGoPackage rec {
  name = "packet-${version}";
  version = "20161215-${stdenv.lib.strings.substring 0 7 rev}";
  rev = "2b8f07ae2246e1a96e007233419867fa0d6747f9";

  goPackagePath = "github.com/ebsarr/packet";

  src = fetchFromGitHub {
    inherit rev;
    owner = "ebsarr";
    repo = "packet";
    sha256 = "1wchrm96ly5m1rcy9d51fs3xjswh746r27hgc410rksiahanzhff";
  };

  goDeps = ./deps.nix;

  meta = {
    description = "a CLI tool to manage packet.net services";
    homepage = https://github.com/ebsarr/packet;
    license = stdenv.lib.licenses.mit;
    maintainers = [ stdenv.lib.maintainers.grahamc ];
    platforms = stdenv.lib.platforms.unix;
  };
}