scalingo: init at 1.29.1

This commit is contained in:
lewo 2023-10-25 15:42:35 +02:00 committed by GitHub
commit d5ceccccf0
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,32 @@
{ lib, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "scalingo";
version = "1.29.1";
src = fetchFromGitHub {
owner = pname;
repo = "cli";
rev = version;
hash = "sha256-xBf+LIwlpauJd/0xJIQdfEa0rxph3BJPuMY4+0s+Bb4=";
};
vendorHash = null;
preCheck = ''
export HOME=$TMPDIR
'';
postInstall = ''
rm $out/bin/dists
'';
meta = with lib; {
description = "Command line client for the Scalingo PaaS";
homepage = "https://doc.scalingo.com/platform/cli/start";
changelog = "https://github.com/Scalingo/cli/blob/master/CHANGELOG.md";
license = licenses.bsdOriginal;
maintainers = with maintainers; [ cimm ];
platforms = with lib.platforms; unix;
};
}