summary refs log tree commit diff
path: root/pkgs/development/tools/packet/default.nix
blob: 723e5d8bb2d1dd3351603389435bdca6cf463791 (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
# This file was generated by https://github.com/kamilchm/go2nix v1.2.1
{ lib, buildGoPackage, fetchgit }:

buildGoPackage rec {
  pname = "packet";
  version = "v2.2.2";

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

  src = fetchgit {
    rev = version;
    url = "https://github.com/ebsarr/packet";
    sha256 = "18n8f2rlab4icb28k1b9gnh30zy382v792x07fmcdqq4nkw6wvwf";
  };

  goDeps = ./deps.nix;

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