summaryrefslogtreecommitdiffstats
path: root/pkgs/tools
diff options
context:
space:
mode:
authorPeter Hoeg <peter@speartail.com>2017-02-24 11:13:29 +0800
committerPeter Hoeg <peter@speartail.com>2017-02-24 11:15:26 +0800
commit8e3d0b83234bf301f1eba7a6cb1517c8b2f02a7a (patch)
treea7006a2b87e9fed06e81cf91b200b99b1ab18e3a /pkgs/tools
parentd36b1ccc135fd86dd228db735ce6ef54d69cd9a1 (diff)
awless: 0.0.13 -> 0.0.14
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/virtualization/awless/default.nix13
1 files changed, 6 insertions, 7 deletions
diff --git a/pkgs/tools/virtualization/awless/default.nix b/pkgs/tools/virtualization/awless/default.nix
index afc45a2d5a75..549c830e8871 100644
--- a/pkgs/tools/virtualization/awless/default.nix
+++ b/pkgs/tools/virtualization/awless/default.nix
@@ -2,22 +2,21 @@
buildGoPackage rec {
name = "awless-${version}";
- version = "0.0.13";
- rev = "${version}";
+ version = "0.0.14";
goPackagePath = "github.com/wallix/awless";
src = fetchFromGitHub {
- inherit rev;
- owner = "wallix";
- repo = "awless";
- sha256 = "045n4r2mk40pjggsfcjlxni6q4arybs9x9raghqb9n8dyfg9v5kv";
+ owner = "wallix";
+ repo = "awless";
+ rev = version;
+ sha256 = "1syxw8d9y1b4bdb1arsx05m5mxnd0dqp3nj7fk5j1v7cnnbja3hj";
};
meta = with stdenv.lib; {
homepage = https://github.com/wallix/awless/;
description = "A Mighty CLI for AWS";
- platforms = platforms.linux ++ platforms.darwin;
+ platforms = with platforms; linux ++ darwin;
license = licenses.asl20;
maintainers = with maintainers; [ pradeepchhetri ];
};