tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
0
fork
atom
lol
0
fork
atom
overview
issues
pulls
pipelines
awless: 0.0.13 -> 0.0.14
Peter Hoeg
9 years ago
8e3d0b83
d36b1ccc
+6
-7
1 changed file
expand all
collapse all
unified
split
pkgs
tools
virtualization
awless
default.nix
+6
-7
pkgs/tools/virtualization/awless/default.nix
reviewed
···
2
2
3
3
buildGoPackage rec {
4
4
name = "awless-${version}";
5
5
-
version = "0.0.13";
6
6
-
rev = "${version}";
5
5
+
version = "0.0.14";
7
6
8
7
goPackagePath = "github.com/wallix/awless";
9
8
10
9
src = fetchFromGitHub {
11
11
-
inherit rev;
12
12
-
owner = "wallix";
13
13
-
repo = "awless";
14
14
-
sha256 = "045n4r2mk40pjggsfcjlxni6q4arybs9x9raghqb9n8dyfg9v5kv";
10
10
+
owner = "wallix";
11
11
+
repo = "awless";
12
12
+
rev = version;
13
13
+
sha256 = "1syxw8d9y1b4bdb1arsx05m5mxnd0dqp3nj7fk5j1v7cnnbja3hj";
15
14
};
16
15
17
16
meta = with stdenv.lib; {
18
17
homepage = https://github.com/wallix/awless/;
19
18
description = "A Mighty CLI for AWS";
20
20
-
platforms = platforms.linux ++ platforms.darwin;
19
19
+
platforms = with platforms; linux ++ darwin;
21
20
license = licenses.asl20;
22
21
maintainers = with maintainers; [ pradeepchhetri ];
23
22
};