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
48 lines
1.3 KiB
Nix
48 lines
1.3 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
installShellFiles,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "intermodal";
|
|
version = "0.1.14";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "casey";
|
|
repo = "intermodal";
|
|
rev = "v${version}";
|
|
hash = "sha256-N3TumAwHcHDuVyY4t6FPNOO28D7xX5jheCTodfn71/Q=";
|
|
};
|
|
|
|
cargoHash = "sha256-NqbsDi47AhYw4hNcoWfXNUnc7WjC1en7mbyCJvhYdR4=";
|
|
|
|
# include_hidden test tries to use `chflags` on darwin
|
|
checkFlags = lib.optionals stdenv.hostPlatform.isDarwin [
|
|
"--skip=subcommand::torrent::create::tests::include_hidden"
|
|
];
|
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
|
|
|
postInstall = lib.optionalString (stdenv.buildPlatform.canExecute stdenv.hostPlatform) ''
|
|
installShellCompletion --cmd imdl \
|
|
--bash <($out/bin/imdl completions bash) \
|
|
--fish <($out/bin/imdl completions fish) \
|
|
--zsh <($out/bin/imdl completions zsh)
|
|
'';
|
|
|
|
meta = {
|
|
description = "User-friendly and featureful command-line BitTorrent metainfo utility";
|
|
homepage = "https://github.com/casey/intermodal";
|
|
changelog = "https://github.com/casey/intermodal/releases/tag/v${version}";
|
|
license = lib.licenses.cc0;
|
|
maintainers = with lib.maintainers; [
|
|
Br1ght0ne
|
|
xrelkd
|
|
];
|
|
mainProgram = "imdl";
|
|
};
|
|
}
|