Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: effa94937908
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5f2252cc6afc
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Feb 24, 2019

  1. awless: 0.0.14 -> 0.1.11 (#54121)

    swdunlop authored and xeji committed Feb 24, 2019
    Copy the full SHA
    5f2252c View commit details
Showing with 4 additions and 4 deletions.
  1. +4 −4 pkgs/tools/virtualization/awless/default.nix
8 changes: 4 additions & 4 deletions pkgs/tools/virtualization/awless/default.nix
Original file line number Diff line number Diff line change
@@ -2,22 +2,22 @@

buildGoPackage rec {
name = "awless-${version}";
version = "0.0.14";
version = "0.1.11";

goPackagePath = "github.com/wallix/awless";

src = fetchFromGitHub {
owner = "wallix";
repo = "awless";
rev = version;
sha256 = "1syxw8d9y1b4bdb1arsx05m5mxnd0dqp3nj7fk5j1v7cnnbja3hj";
rev = "v${version}";
sha256 = "187i21yrm10r3f5naj3jl0rmydr5dkhmdhxs90hhf8hjp59a89kg";
};

meta = with stdenv.lib; {
homepage = https://github.com/wallix/awless/;
description = "A Mighty CLI for AWS";
platforms = with platforms; linux ++ darwin;
license = licenses.asl20;
maintainers = with maintainers; [ pradeepchhetri ];
maintainers = with maintainers; [ pradeepchhetri swdunlop ];
};
}