Revert "cli53: 0.4.4 -> 0.8.8"

This reverts commit c25b145815c1a7411621e33e69147c9545833509.
This commit is contained in:
Domen Kožar 2017-06-20 14:04:14 +02:00
parent 8ae8e51dc3
commit 843b3faa18
No known key found for this signature in database
GPG Key ID: C2FFBCAFD2C24246

View File

@ -1,27 +1,21 @@
{ stdenv, buildGoPackage, fetchFromGitHub }: { lib, python2Packages, fetchurl }:
buildGoPackage rec { python2Packages.buildPythonApplication rec {
name = "cli53-${version}"; name = "cli53-${version}";
version = "0.8.8"; version = "0.4.4";
goPackagePath = "github.com/barnybug/cli53"; src = fetchurl {
url = "mirror://pypi/c/cli53/${name}.tar.gz";
src = fetchFromGitHub { sha256 = "0s9jzigq6a16m2c3qklssx2lz16cf13g5zh80vh24kxazaxqzbig";
owner = "barnybug";
repo = "cli53";
rev = version;
sha256 = "1hbx64rn25qzp2xlfwv8xaqyfcax9b6pl30j9vciw7cb346i84gc";
}; };
buildPhase = '' propagatedBuildInputs = with python2Packages; [
pushd go/src/${goPackagePath}/cmd/cli53 argparse
go get . boto
popd dns
''; ];
goDeps = ./deps.nix; meta = {
meta = with stdenv.lib; {
description = "CLI tool for the Amazon Route 53 DNS service"; description = "CLI tool for the Amazon Route 53 DNS service";
homepage = https://github.com/barnybug/cli53; homepage = https://github.com/barnybug/cli53;
license = lib.licenses.mit; license = lib.licenses.mit;