nixpkgs/pkgs/tools/misc/lazydocker/default.nix

25 lines
624 B
Nix
Raw Normal View History

2019-09-21 09:31:00 +00:00
{ stdenv, buildGoPackage, fetchFromGitHub }:
2019-07-06 07:40:34 +00:00
2019-09-21 09:31:00 +00:00
buildGoPackage rec {
2019-07-06 07:40:34 +00:00
pname = "lazydocker";
2019-09-10 22:21:21 +00:00
version = "0.7.4";
2019-07-06 07:40:34 +00:00
src = fetchFromGitHub {
owner = "jesseduffield";
repo = "lazydocker";
rev = "v${version}";
2019-09-10 22:21:21 +00:00
sha256 = "03l6gs4p9p8g0ai6wqg9024rp0pd13m0b9y3sy1ww5afwxb82br6";
2019-07-06 07:40:34 +00:00
};
2019-09-21 09:31:00 +00:00
goPackagePath = "github.com/jesseduffield/lazydocker";
2019-07-06 07:40:34 +00: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 ];
};
}