nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / sc / scalr-cli / package.nix
blob0198f6c72e700c6310570450ff4a5fe23b03d67e
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "scalr-cli";
9   version = "0.16.2";
11   src = fetchFromGitHub {
12     owner = "Scalr";
13     repo = "scalr-cli";
14     rev = "v${version}";
15     hash = "sha256-Pw3ZEmQHlRmhEINQRQ21aCt6t1f7aqH/n8zfIzOF0lo=";
16   };
18   vendorHash = "sha256-0p4f+KKD04IFAUQG8F3b+2sx9suYemt3wbgSNNOOIlk=";
20   ldflags = [
21     "-s"
22     "-w"
23   ];
25   preConfigure = ''
26     # Set the version.
27     substituteInPlace main.go --replace '"0.0.0"' '"${version}"'
28   '';
30   postInstall = ''
31     mv $out/bin/cli $out/bin/scalr
32   '';
34   doCheck = false; # Skip tests as they require creating actual Scalr resources.
36   meta = with lib; {
37     description = "Command-line tool that communicates directly with the Scalr API";
38     homepage = "https://github.com/Scalr/scalr-cli";
39     changelog = "https://github.com/Scalr/scalr-cli/releases/tag/v${version}";
40     license = licenses.asl20;
41     maintainers = with maintainers; [ dylanmtaylor ];
42     mainProgram = "scalr";
43   };