summary refs log tree commit diff
path: root/pkgs/applications/misc/autospotting/default.nix
blob: 985b8136a0a6c058271bad78ce4a2c092affa48d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{ lib, buildGoModule, fetchFromGitHub }:

buildGoModule rec {
  pname = "autospotting";
  version = "unstable-2022-02-17";

  src = fetchFromGitHub {
    owner = "cloudutil";
    repo = "AutoSpotting";
    rev = "f295a1f86c4a21144fc7fe28a69da5668fb7ad0c";
    sha256 = "sha256-n5R5RM2fv3JWqtbSsyb7GWS4032dkgcihAKbpjB/5PM=";
  };

  vendorSha256 = "sha256-w7OHGZ7zntu8ZlI5gA19Iq7TKR23BQk9KpkUO+njL9Q=";

  excludedPackages = [ "scripts" ];

  ldflags = [ "-s" "-w" ];

  meta = with lib; {
    description = "Automatically convert your existing AutoScaling groups to up to 90% cheaper spot instances with minimal configuration changes";
    homepage = "https://github.com/cloudutil/AutoSpotting";
    license = licenses.osl3;
    maintainers = with maintainers; [ costrouc ];
    mainProgram = "AutoSpotting";
  };
}