dapr: init at 0.9.0

This commit is contained in:
Luc Perkins 2020-08-05 17:43:45 -07:00
parent 8d57f75f7a
commit cb3ba43e43
No known key found for this signature in database
GPG Key ID: 9AF8ADA503D89A4F
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ buildGoModule, fetchFromGitHub, stdenv }:
let
pname = "dapr";
version = "0.9.0";
sha256 = "1vdbh5pg3j7kqqqhhf4d9xfzbpqmjc4x373sk43pb05prg4w71s7";
vendorSha256 = "19qcpd5i60xmsr8m8mx16imm5falkqcgqpwpx3clfvqxjyflglpp";
in buildGoModule {
inherit pname version vendorSha256;
src = fetchFromGitHub {
inherit sha256;
owner = "dapr";
repo = "cli";
rev = "v${version}";
};
postInstall = ''
mv $out/bin/cli $out/bin/dapr
'';
meta = with stdenv.lib; {
homepage = "https://dapr.io";
description = "A CLI for managing Dapr, the distributed application runtime";
license = licenses.mit;
maintainers = with maintainers; [ lucperkins ];
};
}

View File

@ -1662,6 +1662,8 @@ in
dante = callPackage ../servers/dante { };
dapr-cli = callPackage ../development/tools/dapr/cli {};
dasher = callPackage ../applications/accessibility/dasher { };
datamash = callPackage ../tools/misc/datamash { };