Merge pull request #188441 from fabaff/qovery-cli
qovery-cli: init at 0.45.0
This commit is contained in:
commit
ae03093631
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/admin/qovery-cli/default.nix
Normal file
25
pkgs/tools/admin/qovery-cli/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "qovery-cli";
|
||||
version = "0.45.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Qovery";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-cJb5Cac7WDhtNL/7uIIvAz7Kum3Ff2g6tmKyTJWvq00=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-KHLknBymDAwr7OxS2Ysx6WU5KQ9kmw0bE2Hlp3CBW0c=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Qovery Command Line Interface";
|
||||
homepage = "https://github.com/Qovery/qovery-cli";
|
||||
license = with licenses; [ asl20 ];
|
||||
maintainers = with maintainers; [ fab ];
|
||||
};
|
||||
}
|
|
@ -10219,6 +10219,8 @@ with pkgs;
|
|||
|
||||
qosmic = libsForQt5.callPackage ../applications/graphics/qosmic { };
|
||||
|
||||
qovery-cli = callPackage ../tools/admin/qovery-cli { };
|
||||
|
||||
qownnotes = libsForQt5.callPackage ../applications/office/qownnotes { };
|
||||
|
||||
qpdf = callPackage ../development/libraries/qpdf { };
|
||||
|
|
Loading…
Reference in a new issue