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

38 lines
1 KiB
Nix
Raw Normal View History

2021-04-21 19:23:17 +00:00
{ lib, fetchFromGitHub, rustPlatform, stdenv, installShellFiles, libiconv }:
rustPlatform.buildRustPackage rec {
pname = "zellij";
2021-05-28 15:01:58 +00:00
version = "0.12.1";
2021-04-21 19:23:17 +00:00
src = fetchFromGitHub {
owner = "zellij-org";
repo = pname;
rev = "v${version}";
2021-05-28 15:01:58 +00:00
sha256 = "sha256-OgpSVyXvJeRpxHWfIoJjQbbkt2RSze0IL5za3igGE6s=";
2021-04-21 19:23:17 +00:00
};
2021-05-28 15:01:58 +00:00
cargoSha256 = "sha256-LgJPhwOuzlKIw5smy4WJvC0CFoylnMlx6Re7gVPtiq8=";
2021-04-21 19:23:17 +00:00
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
preCheck = ''
HOME=$TMPDIR
'';
postInstall = ''
installShellCompletion --cmd $pname \
2021-05-15 16:59:42 +00:00
--bash <($out/bin/zellij setup --generate-completion bash) \
--fish <($out/bin/zellij setup --generate-completion fish) \
--zsh <($out/bin/zellij setup --generate-completion zsh)
2021-04-21 19:23:17 +00:00
'';
meta = with lib; {
description = "A terminal workspace with batteries included";
homepage = "https://zellij.dev/";
license = with licenses; [ mit ];
2011-04-30 06:23:14 +00:00
maintainers = with maintainers; [ therealansh _0x4A6F ];
2021-04-21 19:23:17 +00:00
};
}