Merge pull request #188441 from fabaff/qovery-cli

qovery-cli: init at 0.45.0
This commit is contained in:
Fabian Affolter 2022-08-28 10:27:26 +02:00 committed by GitHub
commit ae03093631
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View 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 ];
};
}

View file

@ -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 { };