35 lines
893 B
Nix
35 lines
893 B
Nix
{ lib, fetchFromGitHub, rustPlatform, stdenv, installShellFiles, libiconv }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "zellij";
|
|
version = "0.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zellij-org";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "102zw4napzx05rpmx6scl6il55syf3lw1gzmy1y66cg1f70sij4d";
|
|
};
|
|
|
|
cargoSha256 = "121fsch0an6d2hqaq0ws9cm7g5ppzfrycmmhajfacfg6wbiax1m5";
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [ libiconv ];
|
|
|
|
preCheck = ''
|
|
HOME=$TMPDIR
|
|
'';
|
|
|
|
postInstall = ''
|
|
installShellCompletion assets/completions/zellij.{bash,fish} --zsh assets/completions/_zellij
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "A terminal workspace with batteries included";
|
|
homepage = "https://zellij.dev/";
|
|
license = with licenses; [ mit ];
|
|
maintainers = with maintainers; [ therealansh ];
|
|
};
|
|
}
|