2019-07-06 08:40:34 +01:00
|
|
|
{ stdenv, buildGoModule, fetchFromGitHub }:
|
|
|
|
|
|
|
|
buildGoModule rec {
|
|
|
|
pname = "lazydocker";
|
2019-08-18 08:18:01 +01:00
|
|
|
version = "0.7";
|
2019-07-06 08:40:34 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jesseduffield";
|
|
|
|
repo = "lazydocker";
|
|
|
|
rev = "v${version}";
|
2019-08-18 08:18:01 +01:00
|
|
|
sha256 = "0vai88g31yf55988paqzs7fqlxgi0ydrsgszzjig9ai3x9c52xim";
|
2019-07-06 08:40:34 +01:00
|
|
|
};
|
|
|
|
|
2019-08-18 08:18:01 +01:00
|
|
|
modSha256 = "1iin1m6s9xxdskvj6jy2jwlqrsrm432ld13cpa28hpx7pylx61ij";
|
2019-07-06 08:40:34 +01:00
|
|
|
|
|
|
|
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 ];
|
|
|
|
};
|
|
|
|
}
|