asfa: init at 0.10.0
This commit is contained in:
parent
6389a88c08
commit
502b1ac291
72
pkgs/by-name/as/asfa/package.nix
Normal file
72
pkgs/by-name/as/asfa/package.nix
Normal file
@ -0,0 +1,72 @@
|
||||
{
|
||||
lib,
|
||||
rustPlatform,
|
||||
fetchFromGitHub,
|
||||
stdenv,
|
||||
darwin,
|
||||
help2man,
|
||||
openssl,
|
||||
pkg-config,
|
||||
installShellFiles,
|
||||
}:
|
||||
let
|
||||
version = "0.10.0";
|
||||
src = fetchFromGitHub {
|
||||
owner = "obreitwi";
|
||||
repo = "asfa";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-MnhnwtZmPFhOuiqNiaxJnPu88JOdlpvyVy0YGphblBc=";
|
||||
};
|
||||
in
|
||||
rustPlatform.buildRustPackage {
|
||||
pname = "asfa";
|
||||
inherit version src;
|
||||
|
||||
cargoHash = "sha256-/bRBP/NzcNOXl/nANeOYouUAo3NNbtbV9fxIJrNajYQ=";
|
||||
|
||||
outputs = [
|
||||
"out"
|
||||
"man"
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
openssl
|
||||
] ++ lib.optionals stdenv.isDarwin [ darwin.apple_sdk.frameworks.SystemConfiguration ];
|
||||
|
||||
nativeBuildInputs = [
|
||||
help2man
|
||||
installShellFiles
|
||||
pkg-config
|
||||
];
|
||||
|
||||
# checks disabled because tests need to be run against (docker-based) ephemeral ssh-server
|
||||
doCheck = false;
|
||||
|
||||
postInstall = ''
|
||||
mkdir -p "man/man1"
|
||||
help2man -o "man/man1/asfa.1" "$out/bin/asfa"
|
||||
|
||||
# Generate info about all subcommands except for 'help' (which leads to error)
|
||||
"$out/bin/asfa" --help | awk 'enabled && $1 != "help" { print $1 } /^SUBCOMMANDS:$/ { enabled=1 }' \
|
||||
| while read -r cmd; do
|
||||
help2man \
|
||||
"--version-string=${version}" \
|
||||
-o "man/man1/asfa-$cmd.1" \
|
||||
"$out/bin/asfa $cmd"
|
||||
done
|
||||
|
||||
installManPage man/man1/*.1
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "Avoid sending file attachments by uploading them via SSH to a remote site and sharing a publicly-accessible URL with non-guessable (hash-based) prefix instead";
|
||||
homepage = "https://github.com/obreitwi/asfa";
|
||||
changelog = "https://github.com/obreitwi/asfa/blob/${src.rev}/CHANGELOG.md";
|
||||
license = with lib.licenses; [
|
||||
asl20
|
||||
mit
|
||||
];
|
||||
maintainers = with lib.maintainers; [ obreitwi ];
|
||||
mainProgram = "asfa";
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user