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: bd7c1f464d2a
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 4386281bf34b
Choose a head ref
  • 2 commits
  • 1 file changed
  • 1 contributor

Commits on Nov 13, 2020

  1. awsweeper: 0.7.0 -> 0.10.2

    marsam committed Nov 13, 2020
    Copy the full SHA
    4bdd40d View commit details

Commits on Nov 14, 2020

  1. Merge pull request #103772 from marsam/update-awsweeper

    awsweeper: 0.7.0 -> 0.10.2
    marsam authored Nov 14, 2020
    Copy the full SHA
    4386281 View commit details
Showing with 8 additions and 12 deletions.
  1. +8 −12 pkgs/tools/admin/awsweeper/default.nix
20 changes: 8 additions & 12 deletions pkgs/tools/admin/awsweeper/default.nix
Original file line number Diff line number Diff line change
@@ -1,29 +1,25 @@
{ lib, buildGoModule, fetchurl, fetchFromGitHub }:
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
pname = "awsweeper";
version = "0.7.0";

# Requires go generate to be run with mockgen, but doesn't check in the results.
patches = fetchurl {
url = "https://raw.githubusercontent.com/c00w/patches/master/awskeeper.patch";
sha256 = "0dz553ffxc37m2iwygrbhxf7pm91hxdriic8a1gjf8q3nyn13npl";
};
version = "0.10.2";

src = fetchFromGitHub {
owner = "cloudetc";
owner = "jckuester";
repo = pname;
rev = "v${version}";
sha256 = "1ybrrpnp6rh7rcwihww43cvhfhzzyy51rdk1hwy9ljpkg37k4y28";
sha256 = "1ln4s04n1qd1wv88ahhvvvphlxf6c9krqz9lmbcx3n67sb8xngm5";
};

vendorSha256 = "0hnpb1xp135z2qpn1b6xad59739hffhs8dfpr3n5drmrvajpn4xp";
vendorSha256 = "0zlhb84fmrnwq71d0h83p28aqlfclcydndl0z2j9nx2skjlxax2i";

buildFlagsArray = [ "-ldflags=-s -w -X github.com/jckuester/awsweeper/internal.version=${version} -X github.com/jckuester/awsweeper/internal.commit=${src.rev} -X github.com/jckuester/awsweeper/internal.date=unknown" ];

doCheck = false;

meta = with lib; {
description = "A tool to clean out your AWS account";
homepage = "https://github.com/cloudetc/awsweeper/";
homepage = "https://github.com/jckuester/awsweeper";
license = licenses.mpl20;
maintainers = [ maintainers.marsam ];
};