lazydocker: init at 0.5 (#64320)

This commit is contained in:
Raphael Das Gupta 2019-07-06 09:40:34 +02:00 committed by Wael Nasreddine
parent 0b492c0060
commit bbaee555c3
2 changed files with 26 additions and 0 deletions

@ -0,0 +1,24 @@
{ stdenv, buildGoModule, fetchFromGitHub }:
buildGoModule rec {
pname = "lazydocker";
version = "0.5";
src = fetchFromGitHub {
owner = "jesseduffield";
repo = "lazydocker";
rev = "v${version}";
sha256 = "0f062xn58dbci22pg6y4ifcdfs8whzlv2jjprxxk2ygzixrrjwnc";
};
modSha256 = "02n0lg28icy11a2j2rrlmp70blby0kmjas5j48jwh9h9a0yplqic";
subPackages = [ "." ];
meta = with stdenv.lib; {
description = "A simple terminal UI for both docker and docker-compose";
homepage = https://github.com/jesseduffield/lazydocker;
license = licenses.mit;
maintainers = with maintainers; [ das-g ];
};
}

@ -333,6 +333,8 @@ in
inherit url;
};
lazydocker = callPackage ../tools/misc/lazydocker { };
ld-is-cc-hook = makeSetupHook { name = "ld-is-cc-hook"; }
../build-support/setup-hooks/ld-is-cc-hook.sh;