nixpkgs/pkgs/development/tools/packet/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
595 B
Nix
Raw Normal View History

2022-02-28 14:00:20 +00:00
{ lib, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
pname = "packet";
version = "2.2.2";
goPackagePath = "github.com/ebsarr/packet";
2022-02-28 14:00:20 +00:00
src = fetchFromGitHub {
owner = "ebsarr";
repo = "packet";
rev = "v${version}";
2022-02-28 14:00:20 +00:00
sha256 = "sha256-jm9u+LQE48aqO6CLdLZAw38woH1phYnEYpEsRbNwyKI=";
};
goDeps = ./deps.nix;
2022-02-28 14:00:20 +00:00
meta = with lib; {
description = "a CLI tool to manage packet.net services";
homepage = "https://github.com/ebsarr/packet";
2022-02-28 14:00:20 +00:00
license = licenses.mit;
maintainers = with maintainers; [ grahamc ];
platforms = platforms.unix;
};
}