mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
23 lines
653 B
Nix
23 lines
653 B
Nix
{ stdenv, buildGoPackage, fetchFromGitHub }:
|
|
|
|
buildGoPackage rec {
|
|
name = "vultr-${version}";
|
|
version = "1.15.0";
|
|
goPackagePath = "github.com/JamesClonk/vultr";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "JamesClonk";
|
|
repo = "vultr";
|
|
rev = "${version}";
|
|
sha256 = "1bx2x17aa6wfn4qy9lxk8sh7shs3x5ppz2z49s0xm8qq0rs1qi92";
|
|
};
|
|
|
|
meta = {
|
|
description = "A command line tool for Vultr services, a provider for cloud virtual private servers";
|
|
homepage = https://github.com/JamesClonk/vultr;
|
|
license = stdenv.lib.licenses.mit;
|
|
platforms = stdenv.lib.platforms.all;
|
|
maintainers = [ stdenv.lib.maintainers.zauberpony ];
|
|
};
|
|
}
|