nixpkgs/pkgs/development/tools/packet/default.nix
Graham Christensen 003ae42ae6 packet: init at 20161215-2b8f07a
Signed-off-by: Robin Gloster <mail@glob.in>
2017-01-19 22:17:30 +01:00

28 lines
748 B
Nix

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