mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 09:13:17 +00:00
96 lines
2.2 KiB
Nix
96 lines
2.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
mandown,
|
|
installShellFiles,
|
|
pkg-config,
|
|
curl,
|
|
openssl,
|
|
versionCheckHook,
|
|
nix-update-script,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "zellij";
|
|
version = "0.41.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "zellij-org";
|
|
repo = "zellij";
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-xdWfaXWmqFJuquE7n3moUjGuFqKB90OE6lqPuC3onOg=";
|
|
};
|
|
|
|
# Remove the `vendored_curl` feature in order to link against the libcurl from nixpkgs instead of
|
|
# the vendored one
|
|
postPatch = ''
|
|
substituteInPlace Cargo.toml \
|
|
--replace-fail ', "vendored_curl"' ""
|
|
'';
|
|
|
|
cargoHash = "sha256-38hTOsa1a5vpR1i8GK1aq1b8qaJoCE74ewbUOnun+Qs=";
|
|
|
|
env.OPENSSL_NO_VENDOR = 1;
|
|
|
|
nativeBuildInputs = [
|
|
mandown
|
|
installShellFiles
|
|
pkg-config
|
|
(lib.getDev curl)
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
openssl
|
|
];
|
|
|
|
preCheck = ''
|
|
HOME=$(mktemp -d)
|
|
'';
|
|
|
|
nativeInstallCheckInputs = [
|
|
versionCheckHook
|
|
];
|
|
versionCheckProgramArg = [ "--version" ];
|
|
doInstallCheck = true;
|
|
|
|
# Ensure that we don't vendor curl, but instead link against the libcurl from nixpkgs
|
|
installCheckPhase = lib.optionalString (stdenv.hostPlatform.libc == "glibc") ''
|
|
runHook preInstallCheck
|
|
|
|
ldd "$out/bin/zellij" | grep libcurl.so
|
|
|
|
runHook postInstallCheck
|
|
'';
|
|
|
|
postInstall =
|
|
''
|
|
mandown docs/MANPAGE.md > zellij.1
|
|
installManPage zellij.1
|
|
''
|
|
+ lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd $pname \
|
|
--bash <($out/bin/zellij setup --generate-completion bash) \
|
|
--fish <($out/bin/zellij setup --generate-completion fish) \
|
|
--zsh <($out/bin/zellij setup --generate-completion zsh)
|
|
'';
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Terminal workspace with batteries included";
|
|
homepage = "https://zellij.dev/";
|
|
changelog = "https://github.com/zellij-org/zellij/blob/v${version}/CHANGELOG.md";
|
|
license = with lib.licenses; [ mit ];
|
|
maintainers = with lib.maintainers; [
|
|
therealansh
|
|
_0x4A6F
|
|
abbe
|
|
pyrox0
|
|
];
|
|
mainProgram = "zellij";
|
|
};
|
|
}
|