dry: init at 0.11.2 (#351578)

This commit is contained in:
Aleksana 2024-10-27 20:47:10 +08:00 committed by GitHub
commit 935c464d0d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,29 @@
{
lib,
buildGoModule,
fetchFromGitHub,
}:
buildGoModule rec {
pname = "dry";
version = "0.11.2";
src = fetchFromGitHub {
owner = "moncho";
repo = "dry";
rev = "v${version}";
hash = "sha256-JGtPX6BrB3q2EQyF6x2A5Wsn5DudOSVt3IxBAjjwlC8=";
};
proxyVendor = true;
vendorHash = "sha256-AduDbBpCoW7GmYrBPpL7wyLvwoez81qP/+mllgoHInY=";
meta = {
description = "Terminal application to manage Docker and Docker Swarm";
homepage = "https://moncho.github.io/dry/";
changelog = "https://github.com/moncho/dry/releases/tag/v${version}";
license = lib.licenses.mit;
maintainers = [ lib.maintainers.dump_stack ];
mainProgram = "dry";
};
}