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

46 lines
1.1 KiB
Nix
Raw Normal View History

2021-07-06 09:05:57 +03:00
{ lib
, fetchFromGitHub
, rustPlatform
, stdenv
, installShellFiles
, pkg-config
, libiconv
, openssl
}:
2021-04-21 22:23:17 +03:00
rustPlatform.buildRustPackage rec {
pname = "zellij";
2021-07-20 20:22:33 +03:00
version = "0.15.0";
2021-04-21 22:23:17 +03:00
src = fetchFromGitHub {
owner = "zellij-org";
2021-07-06 09:05:57 +03:00
repo = "zellij";
2021-04-21 22:23:17 +03:00
rev = "v${version}";
2021-07-20 20:22:33 +03:00
sha256 = "sha256-IcpCE9mqR7H1+gRhHyscvXhYHOynJFtOyrSr1FiMxFc=";
2021-04-21 22:23:17 +03:00
};
2021-07-20 20:22:33 +03:00
cargoSha256 = "sha256-22ggPs4iVOI1LKHtW5skfSO7J/FLF8EinvcyHVO14Dw=";
2021-04-21 22:23:17 +03:00
2021-07-06 09:05:57 +03:00
nativeBuildInputs = [ installShellFiles pkg-config ];
2021-04-21 22:23:17 +03:00
2021-07-06 09:05:57 +03:00
buildInputs = [ openssl ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
2021-04-21 22:23:17 +03:00
preCheck = ''
HOME=$TMPDIR
'';
postInstall = ''
installShellCompletion --cmd $pname \
2021-05-15 19:59:42 +03: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 22:23:17 +03:00
'';
meta = with lib; {
description = "A terminal workspace with batteries included";
homepage = "https://zellij.dev/";
license = with licenses; [ mit ];
2011-04-30 10:23:14 +04:00
maintainers = with maintainers; [ therealansh _0x4A6F ];
2021-04-21 22:23:17 +03:00
};
}