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
33 lines
766 B
Nix
33 lines
766 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
stu,
|
|
testers,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "stu";
|
|
version = "0.7.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "lusingander";
|
|
repo = "stu";
|
|
rev = "v${version}";
|
|
hash = "sha256-To1x65UuYSdkjIghy0UOA70LULGZZcC5waxYh99qXbs=";
|
|
};
|
|
|
|
cargoHash = "sha256-YmEzjbGIvgpPlMJln42Q9m/v3HhfsjLMHvES/4S1928=";
|
|
|
|
passthru.tests.version = testers.testVersion { package = stu; };
|
|
|
|
meta = {
|
|
description = "Terminal file explorer for S3 buckets";
|
|
changelog = "https://github.com/lusingander/stu/releases/tag/v${version}";
|
|
homepage = "https://lusingander.github.io/stu/";
|
|
license = lib.licenses.mit;
|
|
maintainers = [ lib.maintainers.Nebucatnetzer ];
|
|
mainProgram = "stu";
|
|
};
|
|
}
|