2021-07-06 07:05:57 +01:00
|
|
|
{ lib
|
|
|
|
, fetchFromGitHub
|
|
|
|
, rustPlatform
|
|
|
|
, stdenv
|
|
|
|
, installShellFiles
|
|
|
|
, pkg-config
|
|
|
|
, libiconv
|
|
|
|
, openssl
|
2022-02-22 16:58:40 +00:00
|
|
|
, DiskArbitration
|
|
|
|
, Foundation
|
2022-03-11 22:42:57 +00:00
|
|
|
, mandown
|
2022-02-23 05:20:33 +00:00
|
|
|
, zellij
|
|
|
|
, testVersion
|
2021-07-06 07:05:57 +01:00
|
|
|
}:
|
2021-04-21 20:23:17 +01:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "zellij";
|
2022-04-02 20:34:09 +01:00
|
|
|
version = "0.27.0";
|
2021-04-21 20:23:17 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "zellij-org";
|
2021-07-06 07:05:57 +01:00
|
|
|
repo = "zellij";
|
2021-04-21 20:23:17 +01:00
|
|
|
rev = "v${version}";
|
2022-04-02 20:34:09 +01:00
|
|
|
sha256 = "sha256-iQ+Z1A/wiui2IHuK35e6T/44TYaf6+KbaDl5GfVF2vo=";
|
2021-04-21 20:23:17 +01:00
|
|
|
};
|
|
|
|
|
2022-04-02 20:34:09 +01:00
|
|
|
cargoSha256 = "sha256-DMHIvqClBpBplvqqXM2dUOumO+Ean4yAHWDplJ9PaUM=";
|
2021-04-21 20:23:17 +01:00
|
|
|
|
2021-09-29 20:46:59 +01:00
|
|
|
nativeBuildInputs = [
|
2022-03-11 22:42:57 +00:00
|
|
|
mandown
|
2021-09-29 20:46:59 +01:00
|
|
|
installShellFiles
|
|
|
|
pkg-config
|
|
|
|
];
|
2021-04-21 20:23:17 +01:00
|
|
|
|
2021-09-29 20:46:59 +01:00
|
|
|
buildInputs = [
|
|
|
|
openssl
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [
|
|
|
|
libiconv
|
2022-02-22 16:58:40 +00:00
|
|
|
DiskArbitration
|
|
|
|
Foundation
|
2021-09-29 20:46:59 +01:00
|
|
|
];
|
2021-04-21 20:23:17 +01:00
|
|
|
|
|
|
|
preCheck = ''
|
|
|
|
HOME=$TMPDIR
|
|
|
|
'';
|
|
|
|
|
|
|
|
postInstall = ''
|
2022-03-11 22:42:57 +00:00
|
|
|
mandown docs/MANPAGE.md > zellij.1
|
|
|
|
installManPage zellij.1
|
|
|
|
|
2021-04-29 19:50:26 +01:00
|
|
|
installShellCompletion --cmd $pname \
|
2021-09-15 16:38:04 +01: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 20:23:17 +01:00
|
|
|
'';
|
|
|
|
|
2021-11-29 22:00:43 +00:00
|
|
|
passthru.tests.version = testVersion { package = zellij; };
|
|
|
|
|
2021-04-21 20:23:17 +01:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A terminal workspace with batteries included";
|
|
|
|
homepage = "https://zellij.dev/";
|
2021-11-29 22:00:43 +00:00
|
|
|
changelog = "https://github.com/zellij-org/zellij/blob/v${version}/Changelog.md";
|
2021-04-21 20:23:17 +01:00
|
|
|
license = with licenses; [ mit ];
|
2022-02-22 19:38:22 +00:00
|
|
|
maintainers = with maintainers; [ therealansh _0x4A6F abbe ];
|
2021-04-21 20:23:17 +01:00
|
|
|
};
|
|
|
|
}
|