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
65 lines
1.5 KiB
Nix
65 lines
1.5 KiB
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
rustPlatform,
|
|
pkg-config,
|
|
openssl,
|
|
scdoc,
|
|
which,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "phetch";
|
|
version = "1.2.0";
|
|
|
|
outputs = [
|
|
"out"
|
|
"man"
|
|
];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "xvxx";
|
|
repo = "phetch";
|
|
tag = "v${version}";
|
|
hash = "sha256-J+ka7/B37WzVPPE2Krkd/TIiVwuKfI2QYWmT0JHgBGQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-2lbQAM3gdytXsoMFzKwLWA1hvQIJf1vBdMRpYx/VLVg=";
|
|
|
|
nativeBuildInputs = [
|
|
installShellFiles
|
|
pkg-config
|
|
scdoc
|
|
which
|
|
];
|
|
buildInputs = [ openssl ];
|
|
|
|
postInstall = ''
|
|
make manual
|
|
installManPage doc/phetch.1
|
|
'';
|
|
|
|
doCheck = true;
|
|
|
|
meta = {
|
|
description = "Quick lil gopher client for your terminal, written in rust";
|
|
mainProgram = "phetch";
|
|
longDescription = ''
|
|
phetch is a terminal client designed to help you quickly navigate the gophersphere.
|
|
- <1MB executable for Linux, Mac, and NetBSD
|
|
- Technicolor design (based on GILD)
|
|
- No-nonsense keyboard navigation
|
|
- Supports Gopher searches, text and menu pages, and downloads
|
|
- Save your favorite Gopher sites with bookmarks
|
|
- Opt-in history tracking
|
|
- Secure Gopher support (TLS)
|
|
- Tor support
|
|
'';
|
|
changelog = "https://github.com/xvxx/phetch/releases/tag/v${version}";
|
|
homepage = "https://github.com/xvxx/phetch";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ felixalbrigtsen ];
|
|
};
|
|
}
|