nerdfonts: fix wrong attribute name in error message (#364463)
[NixPkgs.git] / pkgs / by-name / sc / scalingo / package.nix
blob8300ad167c3653fc48e28efcb1472239269eb925
2   lib,
3   buildGoModule,
4   fetchFromGitHub,
5 }:
7 buildGoModule rec {
8   pname = "scalingo";
9   version = "1.34.0";
11   src = fetchFromGitHub {
12     owner = pname;
13     repo = "cli";
14     rev = version;
15     hash = "sha256-SJFQFOd9m+38TsclIs4FxAl9kejgcUG895qjy4iXKdk=";
16   };
18   vendorHash = null;
20   preCheck = ''
21     export HOME=$TMPDIR
22   '';
24   postInstall = ''
25     rm $out/bin/dists
26   '';
28   meta = with lib; {
29     description = "Command line client for the Scalingo PaaS";
30     mainProgram = "scalingo";
31     homepage = "https://doc.scalingo.com/platform/cli/start";
32     changelog = "https://github.com/Scalingo/cli/blob/master/CHANGELOG.md";
33     license = licenses.bsdOriginal;
34     maintainers = with maintainers; [ cimm ];
35     platforms = with lib.platforms; unix;
36   };