nixpkgs/pkgs/tools/misc/ffsend/default.nix

63 lines
2 KiB
Nix
Raw Normal View History

2021-01-17 03:51:22 +00:00
{ lib, stdenv, fetchFromGitLab, rustPlatform, cmake, pkg-config, openssl
2021-04-26 09:42:59 +00:00
, installShellFiles
, CoreFoundation, CoreServices, Security, AppKit, libiconv
, x11Support ? stdenv.isLinux || stdenv.hostPlatform.isBSD
, xclip ? null, xsel ? null
, preferXsel ? false # if true and xsel is non-null, use it instead of xclip
2019-03-17 03:27:17 +00:00
}:
let
usesX11 = stdenv.isLinux || stdenv.isBSD;
in
assert (x11Support && usesX11) -> xclip != null || xsel != null;
2019-03-17 03:27:17 +00:00
with rustPlatform;
buildRustPackage rec {
2019-04-20 05:50:51 +00:00
pname = "ffsend";
2021-05-09 14:55:30 +00:00
version = "0.2.72";
2019-03-17 03:27:17 +00:00
src = fetchFromGitLab {
owner = "timvisee";
repo = "ffsend";
rev = "v${version}";
2021-05-09 14:55:30 +00:00
sha256 = "sha256-YEmEaf0ob2ulmQghwDYi0RtGuTdRHCoLdPnuVjxvlxE=";
2019-03-17 03:27:17 +00:00
};
2021-05-09 14:55:30 +00:00
cargoSha256 = "sha256-mcWQzfMc2cJjp0EFcfG7SAM70ItwEC/N13UDiRiI3ys=";
2019-03-17 03:27:17 +00:00
2021-01-17 03:51:22 +00:00
nativeBuildInputs = [ cmake pkg-config installShellFiles ];
buildInputs =
2021-04-26 09:42:59 +00:00
if stdenv.isDarwin then [ libiconv CoreFoundation CoreServices Security AppKit ]
else [ openssl ];
2019-03-17 03:27:17 +00:00
2021-01-15 09:19:50 +00:00
preBuild = lib.optionalString (x11Support && usesX11) (
if preferXsel && xsel != null then ''
export XSEL_PATH="${xsel}/bin/xsel"
'' else ''
export XCLIP_PATH="${xclip}/bin/xclip"
''
);
2019-03-17 03:27:17 +00:00
postInstall = ''
2019-09-08 21:58:15 +00:00
installShellCompletion contrib/completions/ffsend.{bash,fish} --zsh contrib/completions/_ffsend
2019-03-17 03:27:17 +00:00
'';
# There's also .elv and .ps1 completion files but I don't know where to install those
2019-03-17 03:27:17 +00:00
meta = with lib; {
2019-03-17 03:27:17 +00:00
description = "Easily and securely share files from the command line. A fully featured Firefox Send client";
longDescription = ''
Easily and securely share files and directories from the command line through a safe, private
and encrypted link using a single simple command. Files are shared using the Send service and
may be up to 2GB. Others are able to download these files with this tool, or through their
web browser.
'';
homepage = "https://gitlab.com/timvisee/ffsend";
2021-04-23 09:56:44 +00:00
license = licenses.gpl3Only;
2019-12-06 06:55:16 +00:00
maintainers = with maintainers; [ lilyball equirosa ];
platforms = platforms.unix;
2019-03-17 03:27:17 +00:00
};
}