Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
88 lines
2.1 KiB
Nix
88 lines
2.1 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
libiconv,
|
|
openssl,
|
|
pkg-config,
|
|
cmake,
|
|
xclip,
|
|
nix-update-script,
|
|
fetchpatch,
|
|
}:
|
|
let
|
|
pname = "gitui";
|
|
version = "0.27.0";
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
inherit pname version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "extrawurst";
|
|
repo = "gitui";
|
|
rev = "v${version}";
|
|
hash = "sha256-jKJ1XnF6S7clyFGN2o3bHnYpC4ckl/lNXscmf6GRLbI=";
|
|
};
|
|
|
|
cargoHash = "sha256-Le/dD8bTd5boz1IeEq4ItJZYC3MRW8uiT/3Zy1yv5L0=";
|
|
|
|
nativeBuildInputs = [
|
|
pkg-config
|
|
cmake
|
|
];
|
|
|
|
buildInputs = [
|
|
openssl
|
|
]
|
|
++ lib.optional stdenv.hostPlatform.isLinux xclip
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
libiconv
|
|
];
|
|
|
|
patches = [
|
|
# Fixes the build for rust 1.89
|
|
# Upstream PR: https://github.com/gitui-org/gitui/pull/2663
|
|
# TOREMOVE for gitui > 0.27.0
|
|
(fetchpatch {
|
|
url = "https://github.com/gitui-org/gitui/commit/950e703cab1dd37e3d02e7316ec99cc0dc70513c.patch";
|
|
sha256 = "sha256-KDgOPLKGuJaF0Nc6rw9FPFmcI07I8Gyp/KNX8x6+2xw=";
|
|
})
|
|
];
|
|
|
|
postPatch = ''
|
|
# The cargo config overrides linkers for some targets, breaking the build
|
|
# on e.g. `aarch64-linux`. These overrides are not required in the Nix
|
|
# environment: delete them.
|
|
rm .cargo/config.toml
|
|
|
|
# build script tries to get version information from git
|
|
rm build.rs
|
|
substituteInPlace Cargo.toml --replace-fail 'build = "build.rs"' ""
|
|
'';
|
|
|
|
GITUI_BUILD_NAME = version;
|
|
# Needed to get openssl-sys to use pkg-config.
|
|
OPENSSL_NO_VENDOR = 1;
|
|
|
|
# Getting app_config_path fails with a permission denied
|
|
checkFlags = [
|
|
"--skip=keys::key_config::tests::test_symbolic_links"
|
|
];
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
changelog = "https://github.com/extrawurst/gitui/blob/v${version}/CHANGELOG.md";
|
|
description = "Blazing fast terminal-ui for Git written in Rust";
|
|
homepage = "https://github.com/extrawurst/gitui";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "gitui";
|
|
maintainers = with lib.maintainers; [
|
|
Br1ght0ne
|
|
yanganto
|
|
mfrw
|
|
];
|
|
};
|
|
}
|