packet: init at 20161215-2b8f07a

Signed-off-by: Robin Gloster <mail@glob.in>
This commit is contained in:
Graham Christensen
2017-01-19 22:17:30 +01:00
committed by Robin Gloster
parent 1b5d5e3913
commit 003ae42ae6
3 changed files with 186 additions and 1 deletions
+27
View File
@@ -0,0 +1,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;
};
}