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
35 lines
795 B
Nix
35 lines
795 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
rustPlatform,
|
|
nix-update-script,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage (finalAttrs: {
|
|
pname = "sftpman";
|
|
version = "2.1.0";
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "spantaleev";
|
|
repo = "sftpman-rs";
|
|
tag = "v${finalAttrs.version}";
|
|
hash = "sha256-6IhMBnp951mKfG054svFTezf3fpOEMJusRj45qVThmA=";
|
|
};
|
|
|
|
cargoHash = "sha256-TltizTFKrMvHNQcSoow9fuNLy6appYq9Y4LicEQrfRE=";
|
|
|
|
meta = with lib; {
|
|
homepage = "https://github.com/spantaleev/sftpman-rs";
|
|
description = "Application that handles sshfs/sftp file systems mounting";
|
|
license = licenses.agpl3Only;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [
|
|
contrun
|
|
fugi
|
|
];
|
|
mainProgram = "sftpman";
|
|
};
|
|
})
|