nixpkgs/pkgs/tools/admin/cli53/default.nix
Casey Ransom 27d4088eb4 cli53: 0.4.4 -> 0.8.12
This is bigger change than the version would imply as the author has
rewritten in Go and no longer supports the Python app.
2018-08-16 10:42:47 -04:00

26 lines
688 B
Nix

# This file was generated by https://github.com/kamilchm/go2nix v2.0-dev
{ lib, stdenv, buildGoPackage, fetchFromGitHub }:
buildGoPackage rec {
name = "cli53-${version}";
version = "0.8.12";
goPackagePath = "github.com/barnybug/cli53";
src = fetchFromGitHub {
owner = "barnybug";
repo = "cli53";
rev = "2624c7c4b38a33cdbd166dad1d3e512830f453e4";
sha256 = "0bhczmzrgf7ypnhhzdrgnvg8cw8ch1x1d0cgajc5kklq9ixv9ygi";
};
goDeps = ./deps.nix;
meta = with lib; {
description = "CLI tool for the Amazon Route 53 DNS service";
homepage = https://github.com/barnybug/cli53;
license = licenses.mit;
maintainers = with maintainers; [ benley ];
};
}