evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / sc / scalr-cli / package.nix
blob4672e5e0bb574a332e5917f590c34352588bc0dd
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "scalr-cli";
8   version = "0.16.0";
10   src = fetchFromGitHub {
11     owner = "Scalr";
12     repo = "scalr-cli";
13     rev = "v${version}";
14     hash = "sha256-9osB3bsc8IvH1ishG9uiIUnAwC1yZd0rFhiZdzYucI8=";
15   };
17   vendorHash = "sha256-0p4f+KKD04IFAUQG8F3b+2sx9suYemt3wbgSNNOOIlk=";
19   ldflags = [
20     "-s" "-w"
21   ];
23   preConfigure = ''
24     # Set the version.
25     substituteInPlace main.go --replace '"0.0.0"' '"${version}"'
26   '';
28   postInstall = ''
29     mv $out/bin/cli $out/bin/scalr
30   '';
32   doCheck = false; # Skip tests as they require creating actual Scalr resources.
34   meta = with lib; {
35     description = "Command-line tool that communicates directly with the Scalr API";
36     homepage = "https://github.com/Scalr/scalr-cli";
37     changelog = "https://github.com/Scalr/scalr-cli/releases/tag/v${version}";
38     license = licenses.asl20;
39     maintainers = with maintainers; [ dylanmtaylor ];
40     mainProgram = "scalr";
41   };